body {
    margin: 0;
}

a {
    color: black;
    text-decoration: none;
}

.header {
    margin: 1rem;
    display: flex;
    column-gap: 2rem;
    overflow-x: scroll;
    scrollbar-width: none;
}

.header::-webkit-scrollbar {
    display: none;
}

.fav-wrapper {
    z-index: 1;
}

.logo-wrapper {
    display: grid;
    grid-template-columns: auto 1fr;
}

.favicon {
    background-image: url('../img/favicon.png');
    background-size: contain;
    aspect-ratio: 1;
    width: 45px;
    background-repeat: no-repeat;
    margin-top: -6px;
}

.logo {
    color: rgb(141, 209, 244);
    font-size: 3rem;
    user-select: none;
    margin-left: 0.5rem;
}

.navbar-option {
    font-size: 2.25rem;
    color: rgb(255, 179, 0);
    font-weight: 500;
}

.navbar-option > a {
    color: rgb(238, 238, 238);
}

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

    .header {
        margin: 1rem 0;
    }

    .favicon {
        margin-left: 0.8rem;
    }

    .navbar-option:last-child {
        margin-right: 2rem;
    }

}