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

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

body{
    font-family: 'Poppins', sans-serif;
    z-index: 0;
}

header{
    width: 100%;
    height: 90px;
    color: white;
    background: #003D7C;
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

header span{
    text-align: center;
    font-size: 32px;
    font-weight: 600;
}

footer{
    width: 100%;
    height: 65px;;
    color: white;
    background: #003D7C;
    padding: 20px; 
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.colorfot{
    color: #8cc6ff;
    margin-left: 5px;
}


main{
    min-height: calc(100vh - 90px - 65px);
    background: url(https://sfo3.digitaloceanspaces.com/e-fuente/e-fuentedevida.net/pruebas_mario/webapp/politicas_privacidad/elrecurso/bg16.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contenedor{
    width: 90%;
    max-width: 900px;
    margin: 20px;
    border-radius: 25px;
    background-color: rgba(255, 255, 255, 0.188);
    padding: 30px;
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 50px;
    box-shadow: rgba(0, 0, 0, 0.7) 0px 0px 9px;
}

.politicas-subtitle{
    width: 100%;
    height: auto;
}

.politicas-subtitle span{
    width: 100%;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    display: flex;
    align-items: center;
    color: #003e7ce1;
}

.politicas{
    margin: 20px;
    display: flex;
    flex-direction: column;
}

.division{
    color: #003D7C;
    width: 100%;
    text-align: center;
    font-weight: 700;

}

.regla{
    margin-bottom: 25px;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.contenido{
    width: 90%;
    text-align: justify;
}

