/* Import Google Font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}


* {
  box-sizing: border-box;
}

/* Create two equal columns that floats next to each other */
.column {
  float: left;
  width: 100%;
  padding: 10px;
  /*height: 300px; /* Should be removed. Only for demonstration */
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}



body{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  text-align: left;
  justify-items: center;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #f8f8f8;
  margin-top: -40px;
}


#cuerpo {

  background-color: #f8f8f8;

  border: 2px solid #f0e9e9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 0;
  position: absolute;
  top: 80px;
  bottom: 0;
  width: 300px;
  height: 65vh;
  margin-top: 0;
 
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;


  -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}


#tituloPpal {
  display: flex;
  align-items: normal; /*center*/
  justify-content: center;
  margin: -10px 0 20px 0;
}

#tituloAprendo {
  display: flex;
  align-items: center; /*center*/
  justify-content: center;
}

#tituloOrigen {
  display: flex;
  align-items: center; /*center*/
  justify-content: center;
}

#origen, #aprendo {
  display: flex;
  flex-direction: column;
  align-items: left; /*center*/
  justify-content: left;
}

#okiDoki, #aceptar {
  margin-top: 10px;
  font-size: 40px;  
  border-style: none; 
  background-color: inherit;
  cursor: pointer;  
}

#okiDoki:hover, #aceptar:hover{
background-color:white;
background: none;
outline: none;
}

.nombre {
  display: flex;
  flex-flow: row wrap;
  justify-items: center;
  justify-content: center;
  margin: 20px 0 10px 0;
}

#title1, #title2 {
  font-size: 30px;
  margin: 0 15px 10px 15px;
  font-weight: 600;
  color: #212121;

}

img {
  background-color: #f8f8f8;
  height: 40px;
  margin-top: 5px;
  width: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
 cursor: pointer;
}

