body {
    background-color: #000e23;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

#navbar {
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 4rem;
    border-bottom: 2px #4da6ff solid;
    background-color: black;
    font-size: 1.2rem;
    z-index: 2;
}

#navbar > a > img {
    height: calc(4rem + 1px);
    aspect-ratio: 1;
}

#navbar a {
    text-decoration: none;
    color: white;
}

#navbar > ul {
    position: absolute;
    right: 25px;
    top: 0%;
    height: 100%;
}

#navbar li {
    text-align: center;
    display: inline;
    width: 10%;
    height: 100%;
    padding:1.4rem 15px;
    margin:0;
}

#navbar li:hover {
    background-color: #000e23;
    color: #fff300;
}

#navbar p {
    position: absolute;
    display: inline;
    height: 100%;
    text-align: left;
    margin: 0;
    padding: 1.4rem 15px;
}

#footer {
    position: fixed;
    background-color: black;
    border-top: 2px #fff300 solid;
    bottom:0%;
    left: 0%;
    height:3rem;
    width: 100%;
}

#footer p {
    position: absolute;
    text-align: center;
    font-size: min(1rem, 3vw);
    top: 0.9rem;
    width: 100%;
    padding: 0;
    margin: 0;

}

#footer a {
    color: #4da6ff;
}

#footer a:hover {
    color: #fff300;
}

#footer img {
    width: 1.2rem;
    height:1.2rem;
}

.badge {
    display: inline;
    height: min(6vw, 3rem);
    width: min(6vw, 3rem);
    bottom: 0%;
    z-index: 2;
}

#wave {
    position: fixed;
    width:min(50%, 432px);
    bottom: 3rem;
    right: 0%;
    z-index: 0;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: black;
}

::-webkit-scrollbar-thumb {
    background: #4da6ff;
}

::-webkit-scrollbar-thumb:hover {
    background: #fff300;
}

@media (max-width: 500px) {
    #navbar p {
        display: none;
    }
}