.navbar {
    display: flex;
    justify-content: space-around;
    /* background-color: #ffcc00; */
    align-items: center;
    flex-direction: column;
}
/* .navbar .logo-div {
    width: 100%;
} */
.nav-list {
    list-style: none;
    display: none;
}
.list-item {
    display: block;
    padding: 0.4em;
}
.nav-item {
    border: 1px solid #ffcc00;
    padding: 1em;
    border-radius: 25px;
}
.nav-item:hover {
    color: #e41719;
    background-color: #ffcc00;
}
.menu {
    position: absolute;
    right: 1em;
    top: 1em;
    cursor: pointer;
}
.menu-line {
    width: 1.7em;
    height: 0.2em;
    background-color: #f900ff;
    margin-bottom: 0.3em;
}
.active {
    display: block;
}

/* ====== FOR MORE THAN 901px ====== */
@media (min-width: 56.3125em) {
    .navbar {
        justify-content: center;
        flex-flow: row wrap;
    }
    .menu {
        display: none;
    }
    .nav-list {
        display: block;
        text-align: center;
        max-width: 50em;
        line-height: 3em;
    }
    .list-item {
        display: inline-block;
    }
}