/* HEADER */

header{
    background:#ff1493;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 10%;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 2px 10px rgba(0,0,0,.2);
}

/* LOGO */

.logo h1{
    color:white;
    font-size:28px;
    font-weight:bold;
}

/* MENÚ */

nav ul{
    display:flex;
    list-style:none;
    gap:25px;
}

nav ul li a{
    text-decoration:none;
    color:white;
    font-size:18px;
    font-weight:500;
    transition:.3s;
}

nav ul li a:hover{
    color:#ffe4f2;
}

/* EFECTO HOVER */

nav ul li{
    transition:.3s;
}

nav ul li:hover{
    transform:translateY(-2px);
}

/* BOTÓN MENÚ MÓVIL */

.menu-btn{
    display:none;
    font-size:30px;
    color:white;
    cursor:pointer;
}