:root {
    --black: #272727;
}

html {
    font-size: 20px;
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-style: normal;
}

#splash-screen {
    background-image: url("images/naoomi_1.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center -100%;
    height: 100vh;
    margin: 0;
}

#other-screen {
    margin: 0;
}


h1 {
    font-family: "Rubik Dirt", system-ui;
    font-weight: 400;
    font-style: normal;
}

h2, h3, h4, h5, h6 {
    font-family: "Special Elite", system-ui;
    font-weight: 400;
}

nav {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 0 20px;
    background-color: var(--black);
    color: antiquewhite;
    height: 50px;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
}

.nav-links a {
    display: block;
    padding: 10px 16px;
    color: antiquewhite;
    text-decoration: none;
    font-size: 1.2rem;
    text-transform: uppercase;
    transition: all ease-in-out 100ms;
}

.nav-links a:hover {
    background-color: #333;
}

.nav-links .nav-cta-button {
    padding: 10px 18px;
    margin-left: 16px;
    border: 2px solid antiquewhite;
    border-radius: 50px;
}

.nav-links .nav-cta-button:hover {
    background-color: antiquewhite;
}

.hamburger {
    display: none;
    cursor: pointer;
    width: 34px;
}

.hamburger .bar {
    flex-basis: 100%;
    height: 4px;
    background-color: antiquewhite;
    margin: 3px;
}

@media (max-width: 768px) {
    nav {
        flex-wrap: wrap;
    }

    #splash-screen {
        background-size: 120%; /* Zoomed out vs. 100% cover */
        background-position: center top;
        background-repeat: no-repeat;
    }

    .hamburger {
        display: flex;
        flex-wrap: wrap;
    }

    .nav-links {
        display: none;
        flex-basis: 100%;
        flex-wrap: wrap;
        background-color: rgba(39, 39, 39, 0.8); /* semi-transparent black */
    }

    .nav-links li {
        text-align: center;
        font-size: 1.2rem;
    }

    .nav-links a:hover {
        background-color: var(--black);
        color: antiquewhite;
    }

    .nav-links .nav-cta-button {
        padding: 30px 16px;
        margin-left: 0;
        border: none;
        border-radius: 0;
        margin-bottom: 20px;
    }

    .nav-links .nav-cta-button:hover {
        background-color: antiquewhite;
    }
}



/*____________________________________________________________________________________________________________________*/

.special-elite-regular {
    font-family: "Special Elite", system-ui;
    font-weight: 400;
    font-style: normal;
}

.rubik-dirt-regular {
    font-family: "Rubik Dirt", system-ui;
    font-weight: 400;
    font-style: normal;
}

.ibm-plex-mono-thin {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 100;
    font-style: normal;
}

.ibm-plex-mono-extralight {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 200;
    font-style: normal;
}

.ibm-plex-mono-light {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 300;
    font-style: normal;
}

.ibm-plex-mono-regular {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-style: normal;
}

.ibm-plex-mono-medium {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 500;
    font-style: normal;
}

.ibm-plex-mono-semibold {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 600;
    font-style: normal;
}

.ibm-plex-mono-bold {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 700;
    font-style: normal;
}

.ibm-plex-mono-thin-italic {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 100;
    font-style: italic;
}

.ibm-plex-mono-extralight-italic {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 200;
    font-style: italic;
}

.ibm-plex-mono-light-italic {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 300;
    font-style: italic;
}

.ibm-plex-mono-regular-italic {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-style: italic;
}

.ibm-plex-mono-medium-italic {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 500;
    font-style: italic;
}

.ibm-plex-mono-semibold-italic {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 600;
    font-style: italic;
}

.ibm-plex-mono-bold-italic {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 700;
    font-style: italic;
}
