@charset "utf-8";


* {
    padding: 0.5%; 
    margin: 0.5%;
    box-sizing: border-box;
}

body {
    min-height: 100dvh;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: hsl(7, 92%, 59%);
    box-sizing: border-box;

    /* intento fallido de aplicar css grid
    display: grid;

    grid-template-areas: 
    "header"
    "nav"
    "main"
    "footer"
    ".";

    grid-template-columns: auto;
    grid-template-rows: auto auto 1fr;

    grid-template-areas: 
    "header"
    "nav"
    "main"
    "footer"
    ".";

    grid-template-areas: 
      "header header nav"
      "main . main"
      "main main main"
      "footer footer footer";
      */
       
}
li {
    padding: 0.5rem;
    list-style-type: square;
}

h1 { 

    background-color: transparent;
    font-size: 5em;
    color:hsl(105, 100%, 57%) ;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-weight: 100; 
    padding: 5%;
     margin: 4%;
     margin-left: 20%;
     margin-right: 20%; 
     width: fit-content;
     border-radius: 60%; 
     border-style:solid;
     

}

nav ul li a {
    color: hsl(105, 100%, 57%); 
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif ; 
    font-size: 1.5em;
}

.contenedor_alumna {
    background-color: hsl(7, 100%, 50%);
    color: hsl(56, 100%, 64%);
    height: fit-content;
 display: flex;
 flex-wrap: nowrap;
 align-items: center;
 width: 90%;
 gap: 0%;
 margin-bottom: 7%;
 margin-left: 6%;
}

.contenedor_alumna > nav {
    width: 7rem;
    height: auto;
}

.contenedor_alumna > nav > ul> li {
    list-style-type: none;
}

.sobre_mi {
    
    display: flex;
 flex-direction: row;
 gap: 2em;
 height: fit-content;
 width: fit-content;
 color: hsl(56, 100%, 64%); 
 font-family: Arial, Helvetica, sans-serif;
 justify-content: space-around;
 margin-left: 12%;
 
}

.textos_personal {
    justify-content: space-between;
}

.sobre_mi ul {
    padding: 1rem; 
    background-color: hsl(7, 100%, 50%); 
    text-align: left;
    width: max-content;

}

header .menu {
    display: flex;
    gap: 2rem;}

.contenedora {
    color: hsl(56, 100%, 64%);
}
header .contenedora {
    display: flex;
     flex-direction:row; 
     justify-content: space-between;
}

p {
    text-align: justify;
}

#logo {
     margin-left: 2em;
}
main {
    margin-left: 2em; margin-right: 2em
}



h2 {color: hsl(105, 100%, 57%); 
    font-family: Arial, Helvetica, sans-serif;
     font-weight: 700; 
     font-size: larger;
    text-align: left;
}


img {
    max-width: 100%;
    min-width: 20%;
}

.personal-image {
    
    width: 30%;
    height: 60%;
    
}

.lista_equipo {

    color: hsl(56, 100%, 64%);

}
.lista_equipo > ol > li > a {

    color: hsl(105, 100%, 57%);
    background-color: hsl(7, 100%, 50%);
    width: fit-content;

}

.contenedor_academicos > ul {

    width: fit-content;
    height: auto;
    display: flex;
    flex-direction: row;
    gap: 8rem;
    font-size:medium;
    list-style: none;

}

.contenedor_academicos > ul > li {
    list-style: none;
    width: min-content;
}

footer {
    margin-left: 20px; 
     padding: 0.5rem;
     width: fit-content;
     border-style: dotted;
     color: hsl(105, 100%, 57%); 
    background-color: hsl(7, 100%, 50%);
}
