* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}



header {
    display: none;
}

.logo {
    max-width: 300px;
    background-color: #00ADF2;
    padding: 2rem;
	position:absolute;
}

.textos {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}

.titulos {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.rifa-solidaria-wrapper {
    background-image: url(../images/cinta.naranja-02.png);
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

h1 {
    padding-inline: 4rem;
    padding-block: 0.5rem;
    font-family: "Raleway", sans-serif;
    color: white;
}

.parrafo-wrapper {
    background-color: #F57920;
    width: auto;
    padding: 1rem;
    border-radius: 30px;
    text-align: center;
}

.parrafo-principal {
    font-family: "Baloo 2", sans-serif;
    color: white;
    text-shadow: 2px 2px 6px black;
}

.formulario-area, footer {
    font-family: "Raleway", sans-serif;
}

.formulario {
    background-color: white;
    border-radius: 20px;
}

.boton-comprar {
    background-color: #00ADF2;
    border-bottom: 4px solid #00709d;
    color: white;
}

.boton-comprar:hover {
    background-color: #98e2ff;
}

.bases-legales {
    color: #00ADF2;
}

.sesenta-anos-blanco {
    display: none;
}

footer {
    background-color: black;
    color: white;
    padding: 1rem;
}

@media (max-width: 992px) {

    body {
        background-image: url(../images/landing-mobile.jpg);
    }

    header {
        background-color: #00ADF2;
        display: flex;
        justify-content: center;
        padding: 1rem;
    }

    header > img {
        width: 200px;
    }

    .logo {
        display: none;
    }

    .sesenta-anos-color {
        display: none;
    }

    .sesenta-anos-blanco {
        display: inline;
    }
}