@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Valor genérico */

*{
    margin: 0;
    padding: 0;
}

/* Estructura semantica */

body {
    margin: auto;
    background: rgb(173, 220, 255);
}

/* Encabezado */

header {
    background-color: rgb(165, 237, 255);
    text-align: center;
}

.menu {
    font-size: 1.5rem;
    background-color: rgb(5, 155, 255);
    border-bottom: 1px solid black;
    border-width: 0.2rem;
    padding-top: 10px;
    padding-bottom: 10px;
}

.botones {
    padding: 10px 20px;
    background-color: rgb(0, 123, 205);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 140px;
    font-size: 1.4rem;
    font-family: "Kanit", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: black;
    text-decoration: none;
}

.botones:hover {
    transition: 0.5s ease;
    background-color: rgb(0, 98, 164);
    transition: color 0.5s ease;
    color: rgb(255, 255, 255);
}

.fadu200 {
    height: 30rem;
    background: url(../img/200fadu.png);
    background-size: cover;
}

.perfil {
    padding-top: 2rem;
}

.fadu200 h1 {
    cursor: pointer;
    background-color: rgb(5, 155, 255);
    border-radius: 1rem;
    box-shadow: 0px 0px 10px 5px rgba(47, 47, 47, 0.702);
    border-width: 0.2rem;
    border-style: solid;
    border-color: black;
    padding: 0.8rem;
    display: inline-block;
    letter-spacing: 0.1rem;
    font-size: 2rem;
    margin-top: 1rem;
    font-family: "Kanit", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.fadu200 h1:hover {
    transform: scale(105%);
    transition: 0.7s ease;
    border-color: rgb(255, 255, 255);
}

.mateocordone {
    cursor: pointer;
    height: 250px;
    border-radius: 50px;
    border-width: 0.3rem;
    border-style: solid;
    border-color: black;
    margin: 2rem;
    box-shadow: 5px 5px 20px 10px rgba(23, 23, 23, 0.874);
}

.mateocordone:hover {
    transform: scale(105%);
    transition: 0.7s ease;
    border-color: rgb(255, 255, 255);
}

h4 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    background-color:  rgb(5, 155, 255);
    border-width: 0.05rem;
    padding: 5px;
    border-style: solid;
}

/* Sección 1 */

h2 {
    padding: 1rem;
    text-align: center;
    font-family: "Kanit", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.materias {
    display: flex;
    justify-content: center;
}

.niveles{
    width: 300px;
    background-color: rgb(165, 237, 255);
    margin: 10px;
    padding: 1rem;
    border: 3px solid black;
    border-radius: 0.5rem;
}

.listadematerias li {
    line-height: 200%;
    border-bottom: 1px solid;
    list-style-type: none;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

h3{
    font-family: Arial, Helvetica, sans-serif;
    padding-bottom: 8px;
    text-align: center;
}

/* Sección 2 */

.listadeintegrantes {
    margin-top: 1rem;
    justify-content: center;
    margin-right: 10px;
    display: flex;
    font-size: 1.2rem;
    list-style-type: none;
}

.listadeintegrantes li {
    margin-left: 10px;
    margin-right: 10px;
}

.listadeintegrantes li a {
    color: black;
    text-decoration: none;
    font-size: 1.4rem;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}

.avatar {
    margin: 20px;
    height: 200px;
    border-radius: 50px;
    border-width: 0.2rem;
    border-style: solid;
    border-color: black;
    box-shadow: 0px 0px 10px 5px rgba(32, 32, 32, 0.75);
    transition: color 0.5s ease;
}

.avatar:hover {
    transition: 0.7s;
    transform: scale(105%);
    transition: 0.7s ease;
    border-color: rgb(255, 255, 255);
}

.listadeintegrantes li a:hover {
    transition: color 0.5s ease;
    color: rgb(255, 255, 255);
}

/* Pie de página */

footer {
    border-top: 1px solid black;
    background-color: rgb(165, 237, 255);
}

.uba {
    display: flex;
    justify-content: center;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
}

.listauba {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    list-style-type: none;
    padding-left: 4rem;
    padding-right: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.listaacademica {
    line-height: 200%;
}

.info {
    margin: auto;
}

.logos {
    padding-left: 2rem;
    list-style-type: none;
}

.logoCátedraOcampo {
    padding: 1rem;
    width: 300px;
}

.ubafadu {
    padding: 1rem;
    width: 300px;
}

.piedepagina {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    border-top: 1px solid black;
    border-width: 0.2rem;
    font-size: 1.2rem;
    padding: 0.5rem;
    background-color: rgb(5, 155, 255);
}

/* Ejercicio */

.ejercicio {
    background-color: rgb(5, 155, 255);
    margin-top: 1rem;
    font-family: "Kanit", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 2rem;
    padding: 1rem;
    text-align: center;
    border-top: solid;
    border-width: 0.1rem;
}

.ejercicio div a {
    color: black;
    text-decoration: none;
}

.ejercicio div a:hover {
    font-size: 3rem;
    transition: 0.5s ease;
}
