/* Estilos generales */
body {
    background: linear-gradient(to bottom, #0D0D0D, #1E1A3A);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 0;
}

/* Animación para imagen sea-sound */
@keyframes floatImage {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    max-height: 90vh;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    animation: floatImage 3s ease-in-out infinite;
}