html, body{
    width: 100%;
    height: 100%;
    margin: 0;
}

a{
    text-decoration:unset;
    color:unset;
}

body{
    display:flex;
    flex-direction:column;
    align-items:center;
    font-family:'Open Sans';
    box-sizing: border-box;
    padding-top: 1em;
    overflow-x: hidden;
}

#logo{
    max-width: 50vw;
    max-height: 15vh;
}

.nav-item{
    border: 1px solid black;
    border-radius: 0.5em;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    font-size: 1.5em;
    padding: 0.5em;
    margin: 0.5em;
    box-shadow: 0.1em 0.1em black;
}

.nav-item img{
    width: 1.5em;
    height: 1.5em;
    aspect-ratio: 1 / 1;
    margin-right: 0.5em;
}

.nav-item div{
    flex-grow:1;
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:center;
}

a.nav-anchor:hover > div.nav-item{
    border-color: black;
    box-shadow: 0.1em 0.1em black;
    background-color: #dedede;
}

a.nav-anchor:active > div.nav-item{
    border-color: #ffff00;
    box-shadow: 0.1em 0.1em #ffff00;
    background-color: white;
}

@media (orientation: portrait) {
    body{
        font-size: 2em;
    }
}