/* Reset de estilos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos generales */
body {
    font-family: 'Arial', sans-serif;
    background-color: #fce4ec;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    background-image: url('https://www.freepik.es/fotos-premium/marco-lugar-corazones-texto-dia-san-valentin_45367673.htm');
    background-size: cover;
    background-position: center;
}

/* Contenedor principal */
.container {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    width: 80%;
    max-width: 800px;
}

/* Encabezado */
h1 {
    color: #e91e63;
    font-size: 36px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

h2 {
    font-size: 28px;
    color: #f44336;
    font-weight: 400;
    margin-bottom: 20px;
}

/* Contenido */
p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
}

/* Galería de imágenes */
.img-container {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.img-container img {
    width: 30%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Animación de Cupido */
.heart-animation {
    position: relative;
    margin-top: 20px;
    animation: moveHeart 3s ease-in-out infinite;
}

.cupido {
    width: 50px;
    position: absolute;
    top: 0;
    animation: flyCupido 4s linear infinite;
}

/* Botón */
.button {
    background-color: #e91e63;
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    display: inline-block;
    margin-top: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #d81b60;
}

/* Pie de página */
footer {
    margin-top: 30px;
    font-size: 14px;
    color: #777;
}

/* Animaciones */
@keyframes moveHeart {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes flyCupido {
    0% { left: -50px; top: 50%; }
    50% { left: 50%; top: 20%; }
    100% { left: 100%; top: 50%; }
}
