html {
  width: 100%;
  padding: 0px;
  margin: 0px;
}

body {
  width: 100%;
  padding: 0px;
  margin: 0px;
  background-color: #F9F7ED;
  font-family: montserrat;
}


.contenedor {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 95px;
}

.logo_nolting {
    height: auto;
    width: 30%;
    align-self: center;
}

.contenedor_titulo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60%;
}

.titulo{
    color: #C10D19;
    font-weight: 800;
    font-size: 21pt;
    margin-top: 39px;
    margin-bottom: 40px;
    text-align: center;
}

.contenedor_rectangulo {
    height: 50px;
    width: 90%;
    background: #C10D19;
    justify-content: center;
    display: flex;
    border-radius: 50px;
    align-items: center;
    margin-bottom: 20px;
}

.contenedor_rectangulo h2 {
  color: white;
  font-size: 1.2em;
  text-align: center;
  margin: 0;
  font-weight: 600;
}

.contenedor_texto {
    display: flex;
    width: 80%;
}

.contenedor_texto p {
    font-weight: 300;
    font-size: 0.8em;
    text-align: center;
    margin-top: 30px;
}

.avatares_integrantes {

    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px;
}

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

.avatar {
    width: 50%;
    border-radius: 50%
}

.mapa {
  width: 90%;
}

.nombre_alumno {
    font-size: 1.5em;
    font-weight: 600;
    text-align: center;
}

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

.contenedor_logo {
    display: flex;
    flex-direction: row;
    width: 80%;
    justify-content: flex-start;
    margin-bottom: 10px;
}

.logo {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.logo_dgpc {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin-top: 20px;
    margin-bottom: 20px; 
}

.contenedor_texto_logo {
    display: flex;
    flex-direction: column;
    width: 80%;
}

.texto_2 {
    font-weight: 400;
    margin-top: 5px;
    margin-bottom: 0px;
    font-size: 0.9em;
}

.h_line {
    width: 80%;
    height: 2px;
    background: #C10D19;
    margin-top: 40px;
    margin-bottom: 40px;
    align-items: center;
}

.contenidos {
    font-weight: 200;
    align-content: center;
    text-align: center;
    margin-top: 5px;
    font-size: 0.7em;
    color: #C10D19;
    margin-bottom: 50px;
    width: 80%;       
}

.info {
    font-weight: 200;
    align-items: center;
    text-align: center;
    margin-top: 5px;
    font-size: 0.7em;
    color: #C10D19;
    width: 80%;
}

a {
    text-decoration: none;
    color: #232323;
    transition: color 0.3s ease;
    width: 60%;
}

a:hover
{
  color: #C10D19;
}

#menuToggle
{
  display: block;
  position: relative;
  top: 50px;
  left: 50px;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  cursor: pointer;
  opacity: 0; 
  z-index: 2; 
  
  -webkit-touch-callout: none;
}

#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: #C10D19;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}


#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #C10D19;
}

#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}


#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}


#menu
{
  font-family: Montserrat;
  position: absolute;
  width: 300px;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;
  
  background: #ededed;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  font-size: 22px;
}

#menuToggle input:checked ~ ul
{
  transform: none;
}
