/* Estilos generales */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    color: black;
}

/* Imagen centrada principal */
.background {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.coming-soon {
    width: 50vw; /* Ajustado para escritorio */
    max-width: 500px;
    margin-bottom: 0px;
}

.coming-soon-small {
    width: 5vw; /* Ajustado para escritorio */
    max-width: 200px
}

/* Estilos para pantallas pequeñas */
@media screen and (max-width: 768px) {
    .coming-soon {
        width: 80vw; /* Ajustado para móvil */
        max-width: 90%;
    }
    .coming-soon-small {
        width: 15vw; /* Ajustado para móvil */
        max-width: 20%;
    }
}

/* Pie de página */
footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7); /* Banda negra */
    color: white;
    text-align: center;
    font-size: 0.9em; /* Tamaño general reducido */
}

.footer-right {
    font-size: 0.8em; /* Texto más pequeño para disclaimer */
    color: #cccccc; /* Gris claro para menor contraste */
    line-height: 1.5; /* Mejora la legibilidad */
    text-align: center;
    max-width: 90%; /* Ajusta el ancho máximo para pantallas pequeñas */
}

footer p {
    margin: 5px 0;
}tml>