@font-face {
    font-family: "SackersGothicStd-Heavy";
    src: url("assets/fonts/SackersGothicStd-Heavy.otf") format("opentype");
}

@font-face {
    font-family: "SackersGothicStd-Light";
    src: url("assets/fonts/SackersGothicStd-Light.otf") format("opentype");
}

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background-image: url("assets/images/wallpaper.png");
    background-size: cover;
    background-position: center center;
    height: 100vh;
    color: #2d3436;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

h1 {
    max-width: 50%;
}
::-moz-selection {
    /* Code for Firefox */
    color: whitesmoke;
    background: #2d3436;
}

::selection {
    color: whitesmoke;
    background: #2d3436;
}

front_logo {
    position: relative;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.title {
    font-family: "SackersGothicStd-Heavy", sans-serif;
    font-size: 48px;
    margin-bottom: 10px;
}

.heading {
    font-family: "SackersGothicStd-Heavy", sans-serif;
    font-size: 36px;
}

.subtitle {
    font-family: "SackersGothicStd-Light", sans-serif;
    font-size: 24px;
}

.writing {
    font-family: "SackersGothicStd-Light", sans-serif;
    font-size: 16px;
    margin-left: 5px;
}

footer {
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-content {
    font-family: "SackersGothicStd-Light", sans-serif;
    font-size: 12px;
    text-align: center;
    margin-bottom: 5px;
}

.footer-content a {
    color: inherit;
    text-decoration: none;
}

.footer-content a:hover {
    text-decoration: underline;
}

main {
    padding: 1rem;
    display: flex;
    justify-content: left;
    align-items: left;
}

.main_content {
    font-size: 12px;
    text-align: left;
    margin-bottom: 5px;
}

.image_container {
    min-width: 100%;
    margin-bottom: 2rem;
    min-height: 188.6px;
}
.image_container img {
    min-width: 134px;
    max-height: 188.6px;
    width: auto;
    height: auto;
    margin-left: 5px;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
    float: left;
    transform: translateY(3px);
    box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.15);
}

header {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: left;
}

.menu-icon {
    display: block;
    cursor: pointer;
    position: absolute;
    right: 1rem;
}
.menu-bar {
    width: 15px;
    height: 1px;
    background-color: #000;
    margin: 4px 0;
}

.topnav {
    position: relative;
    background-color: transparent;
    /* right: 0; */
    padding: 1rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hide {
    display: none;
}

.nav-item {
    all: unset;
    background-color: transparent;
    font-size: 14px;
    padding: 0.33rem;
    margin-inline: 0.66rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-family: "SackersGothicStd-Heavy", sans-serif;
}
.nav-link {
    all: unset;
    background-color: transparent;
    cursor: pointer;
}

.logo {
    font-family: "SackersGothicStd-Heavy", sans-serif;
    font-size: 36px;
    margin-top: 1px;
}

/* Media query for screens 560px and smaller */
@media (max-width: 560px) {
    main {
        align-items: flex-start; /* left-align for flexbox in column direction */
    }
}

@media (min-width: 1100px) {
    ul {
        display: flex;
    }
    .topnav {
    }

    .nav-item {
        font-size: 19px;
    }

    .menu-icon {
        display: none;
    }
    .hide {
        display: none;
        display: flex;
    }
}

span.blockspam {
    display: none;
}
