@charset "utf-8"
/* ----------------
   reglas generales
   ---------------- */

body{
    background-color: rgb(164, 214, 199);
    margin:auto;
    width:100%;
}
h1,h2,h3{
    text-align: center;
    min-width: 5em;
    width: 80%
    margin:0 auto 2em auto;
    font-family:'Quicksand', sans-serif;
}
h1{
    font-family:'Quicksand', sans-serif;
}
a{
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}

/* ----------------
   header
   ---------------- */

header{
    background-color: #CBC3Ba;
    padding: 1em;
    width: 100%;
    margin: auto;
}
#logo {
    background-color: #a6a998;
    border-radius: .35em;
    padding: .35em;
    width: 6em;
}
header .contenedora{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.contenedora{
    max-width: 75rem;
    margin: 0 auto;
    padding: 1em;
}
.menu{
    display: none;
}
.menu-btn,
.menu-fondo {
    border-radius: 50%;
    padding: .5rem;
    cursor: pointer;
    transition: all 0.3s ease-out;
}
.menu-btn .btn-linea {
    width: 25px;
    height: 3px;
    margin: 4px 0 4px 0;
    background: black;
    transition: all 0.3s ease-out;
}
header nav ul li {
    min-width: 4em;
    margin: .25em 0 .25em .25em;
    list-style: none;
}
header nav ul li a {
    background-color:#a6a998;
    color:black;
    font-weight: bold;
    padding: .25em .5em;
    text-align: center;
    display: block;
    border-radius: 1em;
    font-family:'Quicksand', sans-serif;
}
header nav ul li a:hover {
    background-color:#524F4A;
    color: white;
}

/* ----------------
   main
   ---------------- */

main{
    background-color: #e5e3d7;
    padding: 1em;
    width: 100%;
    margin: auto;
    padding: auto;
}
/* ------ perfil alumno ---------------- */
.perfil{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2em;
    padding-top: 2em;
    width: 100%;
}
.perfil img{
    display: block;
    margin: auto;
    height: auto;
    position: center;
    border: solid .4em #524F4A;
    border-radius: 50%;
}
.datospersonales {
    display: flex;
    justify-content:center;
    align-items: center;
}
#avatar{
    position: center;
    max-width: 80%;
}
h1{
    color: #524F4A;
    font-size: 4em;
    font-family:'Quicksand', sans-serif;
}
h2{
    color: #a6a998;
    font-size: 2em;
}
h3{
    background-color: #a6a998;
    position: center;    
    color: white;
    font-size: 3em;
    border-radius: 0.5em;
    font-family:'Quicksand', sans-serif;
}
h4{
    font-family:'Quicksand', sans-serif;
    display: block;
    background-color: #524F4A;
    color: white;
    text-align:center;
    font-size: 2em;
    border-radius: 1em;
}
ul{
    list-style: square;
    margin: auto;
    height: auto;
}
li{
    display: flex;
    flex-direction: column;
}
h5{
    color: white;
    font-size: 1em;
    text-align: center;
}
.cursando ul{
    font-family: sans-serif;
    color: white;
    list-style: none;
    text-align: center;
}
.aprobadas ul{
    font-family:'Quicksand', sans-serif;
    color: white;
    list-style: none;
    text-align: center;
}
.cursando ul{
    font-family: 'Quicksand', sans-serif;
}

/* ------ datos académicos ---------------- */
.logos ul{
    display: flex;
    flex-direction: column;
    text-align:left;
    list-style: none;
    font-family: sans-serif;
    color: white;
}
.logos ul li{
    background-color: #a6a998;
    padding: 1em;
}
.logos img{
    height: 4em;
    width: 100%;
    margin: 1em 0;
    border: none;
}


/* ----------------
   footer
   ---------------- */
   footer{
    background-color:#524F4A;
    color: white;
    text-align: center;
    font-family:'Quicksand', sans-serif;
    width: 100%;
    padding: 1em;
}


/* ----------------
   MEDIA
   ---------------- */

@media screen and (min-width:640px){
    header{
        background: color #84342D;
        }
    header nav ul {
            display: flex;
        }
        .menu-btn {
            display: none;
        }
        .menu{
            display: flex;
        }
        .perfil{
            display: flex;
            flex-direction: row;
            justify-content: center;
            padding-bottom: 2em;
            padding-top: 2em;
            width: 100%;
        }
    .alumno{
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }
    main{
    background-color: #e5e3d7;
    }
    
    h3{
        padding: 20px;
    }
    .logos ul {
        display: flex;
        flex-direction: row;
        background-color: #a6a998;
        border-radius: 0.5em;
        justify-content: space-around;
        align-items: center;
        margin: 0 0 0 1em;
    }
    
    .logos ul li {
        margin: 1em 1em 3em 0em;
        padding: 0 0 0 1em;
        display: flex;
       flex-direction: column;
       flex-wrap: nowrap;
       justify-content: flex-start;
    }
    
    .logos img{
        height: 4em;
        margin: 1em 0;
        border-radius: 0%;
        border: none;
    }
    

@media screen and (min-width:800px) {
    header{
        background-color:#CBC3Ba;
    }
    main{
        background-color:#e5e3d7;
    }
    .alumno{
        display: flex;
        flex-direction: row;
    }
}
