@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
@font-face {
    font-family: "Thousands";
    src: url("style/kg_ten_thousand_reasons/KGTenThousandReasons.ttf");
  }
html,body{
  display: grid;
  height: 100%;
  width: 100%;
  place-items: center;
  background: linear-gradient(375deg, #1cc7d0, #2ede98);
  background-size:cover;
  background-repeat: no-repeat;
}
::selection{
  color: #fff;
  background: #1cc7d0;
}

.contenedor-wrapper{
    display: flex;
    width: 1000px;
    padding-bottom: 100px ;
 }
body{
    background-image: url(img/fondo.png);
}

.header{
  height: 60px;
  margin-top: 30px;
  
}

.header .contenedor{
  width: 100%;
  display: flex;
  

  
  
}
h1{
  margin-top: 30px;
  padding-left: 10px;
  margin-bottom: 5px;
  font-size: 50px;
  font-family: "Thousands";
}




.menu {
  list-style: none;
  padding: 0;
  margin:0;
  display: flex;
  flex-direction: row;
}

.menu__link{
  display: block;
  padding: 20px;
  background-color: #fba919;
  text-decoration: none;
  color: #FFF;


}

.menu__link:hover{
  background-color: white;
  color:#fba919;
}

.section{
  width: 1000px;
  margin-top: 40px;
  display: flex;
  padding: 30px 0;
  background-color: rgba(232, 239, 241, 0.6);
}
.section img{
  height: 35%;
  width: 35%;
  display: block; 
  margin-left: 10px; 
  margin-right: auto;
  padding-right: 20px;
}
.section p{
  font-family: "Thousands";
  font-size: 13px;  
  text-align: justify;
  padding-right: 10px;
}

.wrapper{
  height: 350px;
  margin-left: 20px;
  
  width: 280px;
  position: relative;
  transform-style: preserve-3d;
 perspective: 1000px;
}


.wrapper .card{
  position: absolute;
  height: 100%;
  width: 100%;
  padding: 5px;
  background: #fff;
  border-radius: 10px;
  transform: translateY(0deg);
  transform-style: preserve-3d;
  backface-visibility: hidden;
  box-shadow: 0px 10px 15px rgba(0,0,0,0.1);
  transition: transform 0.7s cubic-bezier(0.4,0.2,0.2,1);
}
.wrapper:hover > .front-face{
  transform: rotateY(-180deg);
}
.wrapper .card img{
  height: 90%;
  width: 90%;
  display: block; 
  margin-left: auto; 
  margin-right: auto;


  object-fit: cover;
  border-radius: 10px;
}
.texto-emocion{
    text-align: center;
    margin-top: 5px;
    font-size: 20px;
    font-family: "Thousands";
}
.wrapper .back-face{
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
  transform: rotateY(180deg);
}
.wrapper:hover > .back-face{
  transform: rotateY(0deg);
}
.wrapper .back-face img{
  height: 150px;
  width: 150px;
  padding: 5px;
  border-radius: 50%;
  background: linear-gradient(375deg, #1cc7d0, #2ede98);
}
.wrapper .back-face .info{
  text-align: center;
}
.back-face .info .title{
  font-size: 30px;
  font-weight: 500;
}
.back-face ul{
  display: flex;
}

.audio_player{
    
}
 


.back-face ul a{
  display: block;
  height: 40px;
  width: 40px;
  color: #fff;
  text-align: center;
  margin: 0 5px;
  line-height: 38px;
  border: 2px solid transparent;
  border-radius: 50%;
  background: linear-gradient(375deg, #1cc7d0, #2ede98);
  transition: all 0.5s ease;
}
.back-face ul a:hover{
  color: #1cc7d0;
  border-color: #1cc7d0;
  background: linear-gradient(375deg, transparent, transparent);
}

.contenedor_Acerca{
  display: grid;
  width: 1000px;

}