/* Establecer el fondo de la página con una imagen */
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background-image: url(barco.jpg); /* Aquí coloca el nombre de tu imagen */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    color: white;
}

/* Estilos para la animación del texto */
.container {
    text-align: center;
}

.animate-text {
    font-size: 3rem;
    font-weight: bold;
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards;
}

/* Animación para que el texto aparezca */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
