body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f8ff;
    overflow-x: hidden;
}

/* Contenedor del cohete */
#rocket-container {
    position: absolute;
    bottom: 60%;
    left: 10%;
    animation: moveRocket 15s linear infinite;
}

#rocket-container img {
    width: 100px;
    height: auto;
}

/* Animación del cohete */
@keyframes moveRocket {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-100px) rotate(-70deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

