body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    font-family: Arial, sans-serif;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.container {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
}

h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

p {
    font-size: 18px;
}

/* Fondo para pantallas grandes (desktop) */
@media screen and (min-width: 768px) {
    body {
        background-image: url('img/desktop-background.jpg');
    }
}

/* Fondo para pantallas pequeñas (móviles) */
@media screen and (max-width: 767px) {
    body {
        background-image: url('img/mobile-background.jpg');
    }
}