@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color:rgb(250, 232, 239);
    font-family: "Open Sans", sans-serif;
}

/*Header*/

header{
    margin: 5rem 2rem;
}

h2 {
    font-size: 3rem;
}

nav{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.MenuPrincipal ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.MenuPrincipal ul li {
    padding: 0rem 1rem;
    margin: 0rem 2rem;
    list-style: none;
}

.MenuPrincipal ul li:hover {
    cursor: pointer;
    font-weight: 600;
}

ul{
    list-style-type: none;
    width: 60rem;
    margin: auto;
    padding: 0;
}

li{
    border-style: solid;
    border-width: 0.1rem;
    border-radius: 0.2rem;
    border-spacing: 0.5rem;
    display: inline-table;
}

a {
    text-decoration: none;
    color: black
}

/*Foto y Nombre*/

.NombreyFoto {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 5rem 0px;
    margin: 0;
    background-color: rgb(235, 218, 229);
}

.Foto {
    width: 25rem;
    border-width: 0.3rem;
    border-style: solid;
    border-color: black;
    border-radius: 0.5rem;
    margin-right: 5rem;
}

h1{
    font-family: ""Montserrat", sans-serif";
    font-size: 4rem;
}


/*Hoja Académica*/

.SeccionMaterias {
    padding: 5rem;
}

.SeccionMaterias div {
    display: flex;
    justify-content: center;
    margin: 5rem 0rem;
}

.CuadroMaterias {
    width: 20rem;
    border-radius: 0.1rem;
    border: 0.1rem solid #241c29;
    display: flex; 
    flex-direction: column;
    margin: 0 3rem;
    padding: 2rem ; 
}

.CuadroMaterias li {
    margin: 0.1rem;
    border: 2rem;
}

h3 {
    font-size: 1.5rem;
    text-align: center;
    text-decoration:underline;
}


/*Integrantes*/

.Integrantes h6 {
    font-size: 3rem;
    padding-top: 5rem;
    padding-left: 5rem;
}

.Integrantes {
    margin: 0;
    background-color: rgb(235, 218, 229);
}

.Integrantes img{
    display: flex;
    align-items: center;
    justify-content: center;
    border-width: 0.3rem;
    border-style: solid;
    border-color: black;
    border-radius: 0.5rem;
}

.Integrantes article {
    display:flex;
    justify-content:space-evenly;
}

.EspacioIntegrante{
    margin-bottom:10rem;
    margin-top: 3rem;
}

.InformacionIntegrante{
    width: 15rem;
    height: 15rem;
}

.InformacionIntegrante img {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 0;
}

/*Datos Facultad*/

.DatosFacultad {
    margin: 0;
    padding-right: 2rem;
    display:flex;
    justify-content:space-between;
}

.DatosFacultad div{
    padding: 3rem 2rem 0rem;
    font-size: 0.85rem;
    text-align: justify;
    padding-top: 7rem;
}

.Imagenes {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.ImagenFacultad {
    margin: 0;
    padding-bottom: 6rem;
    width: 15rem;
}

.ImagenCatedra {
    margin: 0;
    padding: 0;
    width: 15rem;
}

/*Footer*/

footer {
    background-color: rgb(230, 188, 211);
    font-family: "Open Sans", sans-serif;
    font-size: 0.85rem;
    margin: 1rem;
    padding: 0.5rem;
    display: flex;
}