@import url('https://fonts.googleapis.com/css2?family=Raleway: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');

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

body {
    font-family: 'Raleway', sans-serif;
    background-color: white;
    text-align: center;
    margin: 0;
}

.contenedor {
    padding-bottom: 4rem;
}

header {
    background-color: #00C0C2;
    color: white;
}

#titulo {
    padding: 2rem;
}

h1 {
    font-weight: 600;
}

h3 {
    font-weight: 400;
}

.menu {
    background-color: #2C8D8F;
    padding: 1rem;
    border-bottom: 4px solid #1D5D5E;
}

.menu a {
    color: white;
    text-align: center;
    padding: 1rem;
}

.menu a:hover {    
    color: #1D5D5E;
    background-color: #e4f7f7;
    font-weight: bold;
    box-shadow: 0px 4px 0px 0px #00C0C2;
}

.menu-integrantes {
    background-color: #e4f7f7;
    padding: 1.5rem;
    font-size: 0.85rem;
    color: #2C8D8F;
}

.menu-integrantes li a {
    color: #2C8D8F;
}

.menu-integrantes li a:hover {
    color: #000000;
}

.menu-integrantes .titulo {
    font-weight: 600;
}


ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

li {
    display: inline;
    padding: 1rem;
}

a {
    text-decoration: none;
}

section {
    margin: 3rem;
}

img {
    width: 10%;
    border-radius: 50%;
    border: 4px solid #2C8D8F;
}

.nombre {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.materias {
    display: flex;
    justify-content: space-around;
    width: 75%;
    margin: auto;
}

.materias .niveles {
    width: 28%;
    background-color: #e4f7f7;
    text-align: center;
    padding: 3rem;
    line-height: 2rem;
    margin-left: 2.5%;
    margin-right: 2.5%;
    border-radius: 2rem;
}

.encurso-contenedor {
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.encurso {
    margin-left: 0.3rem;
    color: #2C8D8F;
}

footer {
    width: 100%;
    background-color: #2C8D8F;
    color: white;
    padding: 2rem;
    font-size: 0.7rem;
    bottom: 0;
}


@media (max-width: 1140px) {
  .encurso-contenedor {
    display: block;
  }
  
    .encurso {
        line-height: 0.7rem;
        margin-bottom: 0.5rem;
    }

}