@charset "UTF-8";
 

*{
    font-family: 'Amatic SC', cursive;
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
    text-decoration: none;
    color: black;
}
body {
     background: #FDF5E6;
}
header {
    display: flex;
    justify-content: space-between;
    padding: 1em;
    align-items: center;
    background-image: url(../imagenes/fondo2.jpg);
    background-position: center;
    background-size: cover;
}
.menu ul {
    display: flex; 
    width: 70vw;
    justify-content: space-between;
    align-content: center;
}
.menu {
    margin-right: 5em;
}
.menu ul li a {
    color: white;
    font-weight: bold;
    font-size: 2vw;
    margin-right: 6em;
}
.menu ul li a:hover {
    color: #48D1CC;
}
.titulo {
    text-align: center;
    margin: 1em;
}
#porcentaje {
    text-align: center;
    margin-bottom: 1em;
    font-size: 1.5vw;
    color: white;
    background-color:#E9967A;
    margin-left: 28em;
    margin-right: 28em;
    border-top-left-radius: 0.7em;
    border-top-right-radius: 0.7em;
    border-bottom-left-radius: 0.7em;
    border-bottom-right-radius: 0.7em;
    box-shadow: 0.2em 0.2em 0.2em rgb(58, 68, 68);
}
span {
    background: #48D1CC;
    padding: 0.3em;
    border-top-left-radius: 1em;
    border-top-right-radius: 1em;
    border-bottom-left-radius: 1em;
    border-bottom-right-radius: 1em;
    box-shadow: 0.5em 0.5em 2em rgba(68,58,58);
}
img {
    display: block;
    margin: auto;
    border-top-left-radius: 0.5em;
    border-top-right-radius: 0.5em;
    border-bottom-left-radius: 0.5em;
    border-bottom-right-radius: 0.5em;
}
#historiaacademica {
    display: flex;
    justify-content: space-around;
    padding-right: 5em;
    padding-left: 5em;
    font-size: 1.5vw;
    flex-wrap: wrap;
}
.materias {
    text-align: center;
    background: #48D1CC;
    padding: 1.5vw;
    border-top-left-radius: 0.5em;
    border-top-right-radius: 0.5em;
    border-bottom-left-radius: 0.5em;
    border-bottom-right-radius: 0.5em;
}
#proyecto {
    text-align: center;
    margin-top: 2em;
    background-color: #E9967A;
    box-shadow: 0.2em 0.2em 0.2em rgba(68,58,58);
    font-size: 25px;
    margin: 1.5em;
    margin-right: 8.3em;
    margin-left: 8.3em;
    border-top-left-radius: 1em;
    border-top-right-radius: 1em;
    border-bottom-left-radius: 1em;
    border-bottom-right-radius: 1em;
}
.nosotras {
    text-decoration: underline;
}
.nosotras li a:hover {
    color: #48D1CC;
}
.titulo_footer {
    display: flex;
    text-align: center;
    background-color: #48D1CC;
    justify-content: space-around;
    margin-bottom: 1em;
    margin-top: 2em;
    padding: 1em;
    flex-wrap: wrap;
}
.info li, h4{
     font-family: "texta", sans-serif;
     margin-top: 0.5em;
     color: white;
}
.info h4 {
    background-color: #E9967A;
    padding: 1em;
}
.pie {
    background-color: #E9967A;
    font-family: "texta", sans-serif;
}
@media (max-width: 800px){
    .header {
        display: block;
    }
    .menu ul li a{
        font-size: 5vw;
        margin-right: 2.5em;
        display: block;
    }
    .loguito {
        width: 0vw;
    }
    #porcentaje {
        font-size: 1.3em;
        margin-bottom: 10em;
        margin: 2em;
    }
    #historiaacademica {
        display: flex;
        flex-direction: column;
        font-size: 5vw;
    }
    .materias{
        margin-bottom: 1em;
    }
    #proyecto{
        margin: auto;
    }
    .bocetito{
        width: 100vw;
    }
}