/* navigation */
.navbar-container {
    margin: 1.3%;
    text-align: center;
}

.navbar {
    background-color: #3e3e3b;
    color: white;
    border-radius: 5px;
    padding: 10px;
    display: inline-block;
    width: 70%;
    box-shadow: 0px 5px 11px rgba(0, 0, 0, 0.2);
}

.navbar ul {
    display: flex;
    justify-content: space-around;
}

.navbar a {
    padding: 5px 15px;
}

.navbar a.active:hover {
    font-weight: bold;
    text-decoration: underline;
}