body {
    margin: 0px;
    box-sizing: border-box;
    --header-height: 5vh;
    font-family: HelveticaLight;
    width: 100vw;
    overflow: hidden;
}
@font-face {
    font-family: Routed; /* set name */
    src: url(/assets/fonts/RoutedGothicWide.woff); /* url of the font */
}
@font-face {
    font-family: HelveticaLight; /* set name */
    src: url(/assets/fonts/HelveticaNeueLight.ttf); /* url of the font */
}



header {
    display: flex;
    justify-content: space-between;
    font-family: Routed, sans-serif;
    align-items: center;
    background-color: black;
    min-height: var(--header-height);
    max-height: var(--header-height);
    padding-left: 0.4em;
}

/* header buttons */
header a, header button {
    all: unset;
    font-size: 0.9em;
    text-decoration: none;
    color: white;
    transition:  0.07s ease-in-out;
}
header a:hover, header button:hover, .submenu a:hover {
    color: hsl(6, 70%, 60%)
}

/* the ocean dobree name homepage link*/
header a#name {
    font-size: 2em;
    font-family: HelveticaLight;
}
header a#name:hover  {
    color: rgb(200,200,200);
}

header #links {
    display: flex;
    justify-content: space-around;
    width: 50%;
}
header .submenu {
    font-size: 0.8em;
    align-items: center;
    flex-direction: column;
    gap: 0.5vh;
    background-color: #000000;
    max-width: 100vw;
    min-width: 100vw;
    padding: 0.6em;
    padding-top: 0em;
    position: absolute;
    display: none;
    top: var(--header-height);
    left: 0vw;
    opacity: 0;
    transition: opacity 0.1s ease-in-out;
    border-bottom: 0.8px solid #ffffff99;
}

main {
    background-color: black;
    min-height: calc(100vh - var(--header-height));
    min-width: 100vw;
    overflow: hidden;
    color: white;
}

@media screen and (max-width: 768px) {

    body {
        --header-height: 9vh;

    }
    header {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    header #links {
        width: 100%;
    }


}
