/* Importar una fuente más elegante */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    transition: background 0.3s ease-in-out;
}

/* Contenedor principal con efecto de tarjeta */
.container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    animation: fadeIn 1s ease-in-out;
}

h1 {
    font-size: 28px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    transition: color 0.3s ease-in-out;
}

p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Botón principal */
.menu-link {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 600;
    color: white;
    background: #007bff;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0px 4px 15px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease-in-out;
}

.menu-link:hover {
    background: #0056b3;
    box-shadow: 0px 6px 20px rgba(0, 123, 255, 0.5);
    transform: scale(1.05);
}

/* Información de contacto */
.contact {
    margin-top: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #777;
}

/* Cambiar idioma */
.note {
    margin-top: 20px;
    font-size: 16px;
    font-style: italic;
    color: #007bff;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
}

.note:hover {
    text-decoration: underline;
    color: #0056b3;
}

/* Animación de entrada */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.note {
    cursor: pointer;
    font-size: 16px;
    font-style: italic;
    color: #007bff;
    transition: color 0.3s ease-in-out;
}

.note:hover {
    text-decoration: underline;
    color: #0056b3;
}
