*{
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;padding: 0;
    line-height: 2em;
}
body{
    font-family: Bahnschrift, Helvetica, sans-serif;
    font-style: condensed;
    background-color: #ffffff;
    min-height: 100vh;
    min-width: fit-content;
    display: grid;
    grid-template-rows: auto 1fr auto;
}
header{
    background-color: #20103d;
    padding: 1em;
    color: #ffffff;
    font-size: 2em;
    display: flex;
    justify-content:flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5em;
}
header ul{
    display: flex;
    gap: 2.5em;
    list-style: none;
}
header a{
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
    list-style: none;
    display: grid;
    place-items: center;
}
header figure{
    width: 12%; 
    overflow: hidden;
}
header figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
main{
    display: grid;
    grid-template-columns: 80%;
    grid-template-rows: auto 1fr auto;
    justify-content: center;
}
h1{
    background-color:#3a0d75;
    font-size: 3.5em;
    line-height: 1em;
    color: #ffffff; 
    padding: .5em;
}
section{
    display: grid;
    grid-template-columns: 80%;
    justify-content: center;
}
section h2{
    font-size: 2em;
    background-color:#3a0d75;
    color:#ffffff;
    padding: .4em; 
    margin-top: 1em;
}

article{
    margin-top: 1em;
    margin-bottom: 2.5em;
    display: grid;
    grid-template-columns: 100%;
    gap: 1em;
    justify-content: center;
}

h3{
    background-color: #6355ff;
    font-size: 1.5em;
    color: #ffffff; 
    padding: .5em;
    margin-inline: 1em;
}
article p{
    font-size: 1em;
    color: #20103d;
    line-height: 1.2em;
}
#texto{
padding-inline: 5em;
}
article li{
   color: #20103d; 
   list-style: disc;
}
div{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1em;
    place-items: center;
}

div figure{
    overflow: hidden;
    margin: auto;
    clip-path: circle(40% at 50% 50%);
}
.imagenes{
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1em;
    
}
div figure img{
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display:block;
}
div a{
    color: #20103d;
    font-size: 2em;
    line-height: 1.5em;
    font-weight: light;
    text-decoration: none;
}
#datosacademicos{
    font-size: 2em;
    color:#3a0d75;
    background-color: #ffffff;
    padding: .4em; 
    margin-top: 1em;
}

.content{
    margin: 1em;
    font-size: 1em;
    list-style: none;
    line-height: 1.7em;
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1em;
    place-items: stretch;
}
ul{
    padding-inline: 5em;
}
article ol li{
list-style: none;
}
ol li ul li{
list-style: disc;
}
#atajos{
    display: flex;
    justify-content: center;
    gap: 1em;
}
#atajos li{
    background-color: #20103d;
    padding: 1em;
    list-style: none;
}
#atajos a{
    color: #f7ede8;
    font-size: 1em;
    line-height: 1em;
    text-decoration: none;

}
footer{
    background-color:  #20103d;
    color: #ffffff;
    line-height: 1em;
    font-size: .5em;
    text-align: center;
    padding: 1.2em;
    margin-top: 5em;
}