@import url('https://fonts.googleapis.com/css2?family=Arimo:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Arimo', sans-serif;
}

.nav-link {
    position: relative;
    padding-bottom: 4px;
    transition: 0.3s ease;
    padding: 4px 8px;
    margin: 2px 2px;
}


/* active look (gray bg) */
.nav-link-active {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 8px 10px;
    border-radius: 10px;
    margin: 2px 2px;
}

.nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    left: 0;
    bottom: -2px;
    transition: width 0.35s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-active::after {
    width: 100%;
}