.navbar {
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.3);
}

.logo a {
    font-family: 'Anton', cursive;
    font-size: 2rem;
    color: #ffffff;
    text-decoration: none;
    text-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

/*COLORES NEÓN*/

.nav-link.blanco{
    color: #fff;
    text-shadow: 0 0 5px #c084fc, 0 0 15px #a855f7;
}

.nav-link.white {
 color: #fff;
 text-shadow: 0 0 5px #38bdf8, 0 0 15px #0ea5e9 ;
}

.nav-link.rosa {
 color: #eb1a59;
 text-shadow: 0 0 5px #eb1a59, 0 0 15px #ec4899 ;
}

.nav-link.amarillo {
color: #fde047;
 text-shadow: 0 0 5px #fde047, 0 0 15px #facc15 ;
}

.nav-link:hover {
    transform: scale(1.1);
    filter: brightness(120%);
}

.menu-toggle {
    display: none;
    background: none;
    font-size: 2rem;
    color: #fff;
    border: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-list {
        position: absolute;
        top: 80%;
        right: 0;
        background-color: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        width: 95%;
        text-align: left;
        padding: 20px;
        display: none;
    }

    .nav-list.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

nav {
   background-color: black;
   padding: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: lime;
    text-decoration: none;
    font-size: 1.2rem;
}