html{
    height: 100vh;
    overflow: hidden;
}
body{
    font-family: monospace;
    padding: 2rem 0.5rem;
    text-align: center;
    height: 100%;
    position: relative;
    font-size: 1rem;
    background: #f0f0f0;
    color: #212121;
    @media (prefers-color-scheme: dark) {
        background-color: #212121;
        color: #f0f0f0;
    }
}
.logo{
    @media (prefers-color-scheme: dark) {
        filter: invert(100%);
    }
}
a {
    color: black;
    @media (prefers-color-scheme: dark) {
        color: #26e0f9;
    }
    text-decoration: none;
    position: relative;
}
a:not(.ntd):after{
    content: "";
    border-bottom: 2px dotted lightgray;
    position: absolute;
    bottom: -4px;
    left: 4px;
    right: 4px;
}
a:hover{
    color: #FC5656;
    font-style: italic;
}
a:hover:after{
    border-color: black;
}
@media (prefers-color-scheme: dark) {
    a:hover:after{
        border-color: #FC5656;
    }
}
nav[role=menu] {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}
nav[role=menu] ul{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 1rem;
    padding: 0;
    @media (max-width: 600px) {
        flex-direction: column;
        row-gap: 1rem;
    }
}
nav[role=menu] ul li{
    display: flex;
    align-items: center;
}
nav[role=menu] ul li img{
    width: clamp(10px,10vw,40px);
    height: auto;
    margin: 0 0.3rem;
}
body > img {
    margin: 0.8rem;
}
.f{
    display: flex;
    justify-content: center;
}
.r {
    flex-direction: row-reverse;
}
.ds{
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.ntd{
    text-decoration: none;
}
.c{
    padding-left: 0.3rem;
    padding-top: 0.3rem;
    transition: all;
}
a:hover > .c {
    padding-top: 0;
    padding-left: 0;
}