html {
    font-family: 'Overpass', sans-serif;
}

html,
body {
    margin: 0;
}

* {
    box-sizing: border-box;
}

a,
a:visited {
    color: black;
}

img {
    max-width: 100%; 
}

.encabezado {
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fdfdae;
}

.logo {
    font-weight: bold;
    
}
.logo a {
    text-decoration: none;
    font-size: 24px;
    letter-spacing: 2px;
}

.logo span {
    font-weight: 300;
    font-size: 90%;
}

ul {
    padding-left: 0;
}

ul li {
    list-style-type: none;
}

.encabezado nav ul li {
    display: inline-block;
    list-style-type: none;
    margin-right: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 16px;
}

.encabezado nav ul li:last-child {
    margin-right: 0;
}

.encabezado nav ul li a {
    text-decoration: none;
}

.contenido {
    padding: 30px;
}



footer {
    padding: 15px 30px;
    background-color: #ccc;
    color: white;
}


.circularpic{
    width: 250px;
    height: 250px;
    display: block;
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #8585A0;
    border-radius: 20%;


}

.infomaterias {
  font-size: 15px;
  padding: 8px 12px;
  bottom: 8px;
  width: 100%;
  text-align: center;
  letter-spacing: 0.5pt; 
  
}


.fototrabajo1{
    width: 250px;
    height: 250px;
    display: block;
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    border: 0,5px solid #8585A0;
    border-radius: 50%;
}

.fototrabajo2{
    width: 250px;
    height: 250px;
    display: block;
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    border: 0,5px solid #8585A0;
    border-radius: 50%;
}

.fototrabajo3{
    width: 250px;
    height: 250px;
    display: block;
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #8585A0;
    border-radius: 50%;
}



.contenedordelogos{
    width: 80%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3em;
    margin-bottom: 3em;
    display: grid;
    grid-template-columns: repeat(1,1fr);
    grid-gap: 38px;
    
    

}

.item{
    background-color: #fff;
    cursor: pointer;
    box-shadow: 0 0 5px 0 rgba(0,0,0,.095);
    transition: all 300ms;
    position: relative;
    border-radius: 10%;
}

.item::after {
content: "";
background-color: rgba(236, 231, 150, 0.102);
width: 100%;
height: 100%;
position: absolute;
top: 0; 
left: 0;
transform: scale (0);
transition: all 300ms;
opacity: 0;
}

.item:hover::after {
opacity: 3;
transform: scale(1);
}

.item:hover {
    transform: scale(1.2);
}



.item-text{
    padding: 1em;

}

@media screen and (min-width: 598px) {
    .contenedordelogos{
        grid-template-columns: repeat(2,1fr);
    }
}

    @media screen and (min-width: 960px) {
        .contenedordelogos{
            grid-template-columns: repeat(3,1fr);
        }
    }




.academicos{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: 0 0 2em;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 2em;
    margin-left: 0px;
    justify-content: space-around;
    align-items: center;
   
}

li {
    text-align: center;
}
ul {
    list-style-type: disc;
}

.textopie {
    font-size: 0.8em;

}






