.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2.5rem;
    font-family: 'Quicksand', sans-serif;
    color: white;
}

.logo {
    font-size: 2.2rem;
    margin: 0.75rem 2.5rem;
}

.navbar-links ul {
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar-links li {
    list-style: none;
    padding: 1rem 2.5rem 1rem 2.5rem;
    font-size: 1.2rem;
}

.navbar-links li a {
    text-decoration: none;
    color: #FFF;
    padding: 0.5rem 2rem;
    display: block;
}

.navbar-links li:hover {
    
}

.toggle-button {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
}

.toggle-button .bar {
    height: 3px;
    width: 100%;
    background-color: #FFF;
    border-radius: 10px;
}

@media (max-width: 800px) {
    .toggle-button {
        display: flex;
    }
    
    .navbar-links {
        display: none;
        width: 100%;
    }
    
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .navbar-links ul {
        width: 100%;
        flex-direction: column;
    }
    
    .navbar-links li {
        text-align: center;
    }
    
    .navbar-links.active {
        display: flex;
    }
}