/* --- Estilos generales --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-image: url('img/menu_helado.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


/* --- Contenido principal --- */
.contenido {
    background-color: rgba(0, 0, 0, 0.5); /* Fondo semi-transparente para mejor lectura */
    padding: 40px;
    border-radius: 20px;
}

h1 {
    font-size: 60px;
    font-style: italic;
    text-transform: lowercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.5;
    max-width: 600px;
}

/* --- Menú --- */
nav {
    margin-bottom: 25px;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #f8d14a; /* Amarillo helado */
}

/* --- Redes sociales --- */
.redes a {
    color: white;
    margin: 0 10px;
    font-size: 22px;
    transition: color 0.3s;
}

.redes a:hover {
    color: #f8d14a;
}




