@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap');

body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Raleway', sans-serif;
    background-color: black;
    background-image: url('background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.main-container {
    text-align: center;
    position: relative;
    top: 35%;
    transform: translateY(-50%);
}

.logo {
    width: 200px;
    margin-bottom: 20px;
}

.title {
    color: white; 
    margin-bottom: 35px;
    margin-left: 50px;
    margin-right: 50xp;
    font-size: 2em;
}

.description {
    color: white;
    margin-bottom: 50px;
    margin-left: 50px;
    margin-right: 50xp;
    font-size: 1em;
}

footer {
    position: fixed;
    bottom: 0px;
    width: 100%;
    text-align: center;
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1); /* Sombra ligera para el footer */
    background: rgba(0, 0, 0, 0.5); /* Fondo semitransparente para el footer para mejorar la legibilidad */
}

/* Estilos para pantallas de hasta 768px de ancho */
@media (max-width: 768px) {
    .main-container {
        top: 50%;
        padding: 20px;
    }

    .logo {
        width: 150px;
    }

    .title, .description {
        margin-left: 20px;
        margin-right: 20px;
        font-size: 1.5em;
    }

    .description {
        font-size: 1em;
        br {
            display: none; /* Oculta los saltos de línea forzados */
        }
    }

    footer{
        padding: 0px;
    }
}

/* Estilos para pantallas aún más pequeñas, como teléfonos en orientación vertical */
@media (max-width: 480px) {
    .main-container {
        top: 50%;
        padding: 20px;
    }

    .logo {
        width: 120px;
    }

    .title, .description {
        margin-left: 20px;
        margin-right: 20px;
        font-size: 1.2em;
    }

    .description {
        font-size: 1em;
        br {
            display: none; /* Oculta los saltos de línea forzados */
        }
    }

    footer{
        padding: 0px;
    }
}