@import url("./informacion.css");

/* Estilos Globales*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
font-family: 'Roboto', sans-serif;
width: 100%;
height: 100vh;
/*position: fixed;*/
background-image: url("../img/caratula.png");
/*background-repeat: no-repeat;*/
background-position: center;
background-size: cover;
background-attachment:fixed;
}


ul {
    list-style: none;
}

a {
    color: unset;
    cursor: pointer;
    text-decoration: none;
}

section {
    padding: 0px 0px;
}

h1{
    font-size: 36px;
    font-weight: 420;
    color: rgb(5, 5, 5);
}

h2{
    font-size: 35px;
}

/* Estilos utiles */

.section-title {
    text-align: center;
}

.reverse-flexrow {
    flex-direction: row-reverse;
}


@media (max-width: 640px) { 
    body{
        text-align: center;
        background-position: center;
        background-size:cover;
        background-attachment:fixed;

    }

    h1{
        font-size: 2em;
        color: white;
    }
    section{
        padding: 5px 10px;
    }
}
