html{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

body{
    width: 100vw;
    min-height: 100vw;;
    margin: 0;
}

#content-container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

#footer{
    bottom: 0;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    padding-left: var(--s-gap);
    padding-top: var(--s-gap);

}

/* For the time being, menus look the same on desktop and phone*/
    #menuheader{
        position: relative;
        display: flex;
        align-items: center;
        justify-content: start;
        gap: var(--s-gap);
    }

    #menu{
        position: relative;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-wrap: wrap;
        gap: var(--s-gap);
        width: 100%;
    }

    a {
        position: relative;
    }

    a.menu-link:hover::after {
        background-size: 123px 5px;
        height: 5px;
    }

    /*Main container, content will be relative to this*/
    .dropdown{
        display: block;
        position: relative;
    }

    /* Section header, when you hover this, the child items will fold out */
    .menu-dropdown-parent{
        padding: 0.5em 0; /*Make the parent more easily hoverable*/
    }

    /* Container for the child items */
    .dropdown-content{
        display: none;
        position: absolute;
        background-color: white;
        min-width: 160px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); /* Slight shadow for a 3D effect */
        z-index: 1;
        padding: 0.2em;
        flex-direction: column;
        padding-bottom: 0.5em;
    }

    /* Child item */
    .dropdown-content a {
        padding: 0.5em 0.5em; /* Extra padding to make the box look nicer */
        display: block;
    }

    /* Show child items when container is hovered */
    .dropdown:hover .dropdown-content {
        display: flex;
}

/* Desktops */
/*
@media (max-aspect-ratio: 3/2) {
    #content{
        max-width: 95vw;
    }
}
*/
/* Phones */
/*
@media (min-aspect-ratio: 3/2) {
    #content{
        max-width: 80vw;
    }
}
*/

#content{
    max-width: 50rem;
}