﻿.anime-navbar {
    width: 100vw;
    height: 100px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background: var(--card-background);
    padding: 0 10%;
    gap: 10%;
}

.anime-navbar-item{
    width: 100%;
    height: 100%;


    display: flex;
    justify-content: center;
    align-items: center;

    background: none;
    color: white;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;

    transition: 0.1s ease;
    cursor: pointer;
}



.anime-navbar-item:hover{
    color: white;
    background: rgba(255,255,255, 0.3);
}

.anime-navbar-highlighted{
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid var(--card-title-background);
    text-decoration: underline;
}

@media (max-width: 700px) {
    .anime-navbar {
        height: 70px;
        gap: 0;
    }

    .anime-navbar-item {
        font-size: 12px;
    }
}
