body {
    background-color: black;
    color: white;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.middle {
    text-align: center;
}

.navbar {
    display: flex;
    align-items: center;
    background-color: #222;
    padding: 10px;
    border-radius: 10px;
}

.nav-button {
    background-color: #222;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.nav-links {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: center;
    padding: 0 20px;
}

.nav-links a {
    color: #ccc;
    text-decoration: none;
    padding: 15px 20px;
    position: relative;
    font-size: 16px;
}

.nav-links a:hover {
    color: white;
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 10%;
    bottom: 5px;
    width: 80%;
    height: 2px;
    background-color: white;
}

.icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: 10px;
}