/* --------- DESDE ACÁ ES FUNDAMENTAL PARA QUE FUNCIONE EL MENU ------------- */

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

a {
    text-decoration: none;
    color: #1d242a;
}

body {
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: rgb(242, 242, 242);
}


ul {
    list-style: none;
}

header {
    background-color: #9cbdde;
}


#llamamenu .material-icons,
#ocultamenu .material-icons {
}

.contenedor {
    justify-content: space-between;
    margin: 0 auto;
}

header .contenedor {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#logo {
    display: block;
    width: 4em;
    margin: .5em 1em;
}


header ul {
    background-color: #9cbdde;
    color: white;
}

header nav a,
header nav label {
    background-color: #9cbdde;
    padding: .5em 1em;
    text-decoration: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

header nav a:hover,
header nav label:hover {
    background-color: rgb(255, 255, 255);
    color: #9cbdde;
}


span {
    color: #1d242a;
}

.material-icons{
    font-size: 2em;
}

[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
    display: none;
}

header nav label{
    cursor: pointer;
    padding: .5em;
    position: relative;
    z-index: 9999;
    }

#menu-toggle:not(:checked) + #llamamenu,
#menu-toggle:checked + #llamamenu + #ocultamenu {
    display: flex;
}

#menu-toggle:checked + #llamamenu,
#menu-toggle:not(:checked) + #llamamenu + #ocultamenu {
    display: none;
}

header nav ul {
    position: fixed;
    left: 100%;
    top: 0;
    height: 100vh;
    width: 50%;
    z-index: 9990;
    padding-top: 4rem;
    transition: all .25s ease;
}

#menu-toggle:checked + #llamamenu + #ocultamenu + ul {
    left: 50%;
    transition: all .25s ease;
}

h1 {
    font-family: 'Press Start 2P', sans-serif;
    font-weight: 100;
}

h2, h3 {
    padding: .8em 0 .5em 0;
}

.mapa img {
    width: 100vmin;
    height: auto;
}

.plan {
    padding: 1em;
    margin: 2em 0 3em 0;
}

.plan ul li {
    list-style: circle;
}


.integrante4 {
    padding: 2em;
    background: #f2dee6;
}

.integrante4 img {
    border: solid .2em #ed71a5;
    border-radius: 50%;
    box-shadow: 0 .25em .25em  rgba(0, 0, 0, 0.4), 0 .25em .25em  rgba(0, 0, 0, 0.4) inset;
    margin: 1em;
}

.logopadilla {
    width: 30%;
}

.comitente {
    background-color: #6595bc;
    color: white;
    padding: 1em 2em 2em 2em;
}

.comitente p {
    padding: .8em 0 .5em 0;
}

.integrantes {
    padding: 1em;
    text-align: center;
}

.integrantes ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.integrantes ul li {
    margin: 1em;
}

.integrantes ul li a {
    color: #696969;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.integrantes ul li a:hover {
    color: darkslateblue;
    text-decoration: underline;
}

.integrantes ul li a img {
    border: solid .2em #6194c6;
    border-radius: 50%;
    margin: 1em;
}

.integrantes img {
    width: 100px;
    height: 100px;
}

.datosacademicos {
    padding: 2em;
    display: flex;
    flex-direction: column;
    background-color: #dedede;
}

.datosacademicos ul {
    font-size: 8.5pt;
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.datosacademicos ul li {
    margin-top: .5em;
}

.datosacademicos img {
    width: 100px;
    padding: .5em;
}

.datosacademicos article {
    margin-bottom: .7em;
    
}

footer {
    background-color: #5481ad;
    margin: 0 auto;
    padding: 2em;
    font-size: 10px;
    color: white;
}


/* --------- DESDE ACÁ ES FUNDAMENTAL PARA QUE FUNCIONE EL MENU ------------- */

@media (min-width: 35em) {
    #menu-toggle,
    #menu-toggle:checked + #llamamenu,
    #menu-toggle:not(:checked) + #llamamenu,
    #menu-toggle:checked + #llamamenu + #ocultamenu,
    #menu-toggle:not(checked) + #llamamenu + #ocultamenu {
        display: none;
    }
    
    #menu-toggle:not(:checked) + #llamamenu + #ocultamenu + ul,
    #menu-toggle:checked + #llamamenu + #ocultamenu + ul {
        display: flex;
        flex-wrap: wrap;
        background-color: #9cbdde;
        position: relative;
        top: auto;
        left: auto;
        height: auto;
        width: 100%;
        padding-top: 0;
    }
        header nav ul {
        flex-basis: 25%;
    }         

}
 
/* --------- HASTA ACÁ ES FUNDAMENTAL PARA QUE FUNCIONE EL MENU ---------- */