@charset "utf-8";

* {text-decoration: none;
   font-family: "montserrat", sans-serif;
   color: black;
   box-sizing: border-box;
}

/*-------------body-------------*/

body {
    display:flex;
    flex-direction:column;
    flex-grow: 1;
    min-height: 100vh;
    justify-content: space-between;
    margin:auto;
    padding: 0em;
    max-width: 80%;
    
    background-color:#F0CFBF;

}

    img {
    max-width: 100%;
    height: auto;
}

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

header {
    background-color:#806961;
    margin-bottom: 1em;
    margin-top: 1em;

}
header nav ul {
    display:flex;
    flex-direction:row;
    align-items: center;
    justify-content:space-around;
    padding: 0em;
 
   
}
header nav ul li {
    list-style: none; 
}
header nav ul li a:hover {
    color:#F0CFBF;
}


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

main{
    flex-grow: 1;
    text-align: start;
}

/*-------------alumno-------------*/

.alumno{
    display: flex;
    flex-direction: row;
    flex-wrap:wrap;
    padding: 1em;
    align-items: center;
    justify-content: flex-start;
    background-color: #BF9E91;
 }
.alumno img{
    border-radius: 100%;
    padding: .5em;
}
.alumno h1 {
    margin-left: .5em;
}

/*-------------carrera-------------*/

.carrera{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    margin-bottom: 1em;
    margin-top: 1em;
    padding: 2em;
    background-color: #BF9E91;
}
.carrera h2{
    margin:0;
}
.carrera ul{
    margin:0;
}
.carrera ul li {
    
    line-height: 1.5;
}

/*-------------equipo-------------*/



/* menu */

.equipo{
   margin-bottom: 1em;
    
}

.equipo{
     background-color: #BF9E91;
    }
.equipo ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around;
    
       
}
.equipo ul li {
    list-style: none;
    font-size: 0.7em;
    line-height: 2;
}

.equipo ul li a:hover {
    color:#F0CFBF;
}

/*-------------datoscursada-------------*/

.cursada {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    padding: 1em;
    background-color: #BF9E91;

}
.cursada h3{
    margin:0;
}
p{
    line-height: 1.5;
    font-size:0.8em;
}

/*-------------comitente-------------*/

.comitente{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    padding: 1em;
    background-color: #BF9E91
    
    
}
.comitente h2{
    margin:0;
}

/*-------------footer-------------*/

footer {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    font-size:0.8em;
}

@media (min-width: 1000px) {
    .equipo ul {
   display:flex;
    flex-direction:row;
    align-items: center;
    justify-content:space-around;
    padding: 0em;
       
}   
}
 
