@import url('https://fonts.googleapis.com/css2?family=Odibee+Sans&family=Raleway:wght@100;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Handlee&family=Odibee+Sans&family=Raleway:wght@100;600&display=swap');
*{
    margin:0;
    padding: 0;
    font-family: 'Odibee Sans', cursive;
    border: 1px solid rgba(153, 55, 55, 0.993);
    font-size: 30px;
}
.cabecera{
    height: 10vh;
    display: flex;
    justify-content: space-between;

}
.cabecera div{
    display: inline-flex;
    align-items: center;
}
h1{
    font-size: 60px;
    
}
body{
    background: burlywood;
}
.button{
    justify-content: space-between;
  
   
    
}

button {
    font-family: inherit;
    font-size: 20px;
    background: rgba(153, 55, 55, 0.993);
    color: black;
    padding: 0.7em 1em;
    padding-left: 0.9em;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.2s;
    height: 75%;
   }
   a{
       text-decoration: none;
   }
   button span {
    display: block;
    margin-left: 0.3em;
    transition: all 0.3s ease-in-out;
   }
   
   button svg {
    display: block;
    transform-origin: center center;
    transition: transform 0.3s ease-in-out;
   }
   
   button:hover .svg-wrapper {
    animation: fly-1 0.6s ease-in-out infinite alternate;
   }
   
   button:hover svg {
    transform: translateX(1.2em) rotate(45deg) scale(1.1);
   }
   
   button:hover span {
    transform: translateX(5em);
   }
   
   button:active {
    transform: scale(0.95);
   }
   
   @keyframes fly-1 {
    from {
     transform: translateY(0.1em);
    }
   
    to {
     transform: translateY(-0.1em);
    }
   }

article{
    width:500px;
    border: 4px solid rgba(153, 55, 55, 0.993);
    background:burlywood;
}
.contenido{
    display: flex;
    flex-direction: column;
    justify-content:center;
    flex-wrap: wrap;
    align-items: center;
    font-size: 40px;
    margin:auto;  
}
.seccion{
    height: auto;
    width: 60vw;
    margin:80px 0px;


}
.seccion h2, .seccion h1{
    text-align: center;
    
}
.presentacion{
    background-color: #9d2053;
    align-items: center;
    display: flex;
    justify-content: center;
}
.subtitulo{
    font-size: 50px;
}
.preguntas p{
    margin: 20px 2px;
    border: none;
    background-color: antiquewhite;
    
}
.respuesta{
    text-align: right;
    font-family: 'Handlee', cursive;
    font-size: 25px;
    border: none;

}
.illia{
    background-color: #7a1e48;
    height: auto;
}

@import url('https://fonts.googleapis.com/css?family=Muli&display=swap'); 

* {
  box-sizing: border-box;
}

.container {
  width: 100%;
  display: flex;
  padding: 0 20px;
}

.slide {
  position: relative;
  cursor: pointer;
  height: 80vh;
  flex: 1;
  margin: 10px;
  border-radius: 20px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  transition: .5s
}

.slide > img {
  width: 100%;
  height: 100%;
}

.slide > h3 {
  position: absolute;
  color: #000;
  background-color: white;
  bottom: 10px;
  left: 10px;
  opacity: 0;
  transition: .5s
  
}

.slide.active {
  flex: 10;
}

.slide.active > h3{
  opacity: 1
}


.preferencias{
    background-color: #571b3c;
    height: 500px;
}
.futuro{
    background-color: #341931;
    height: 500px;
}
img{
    width: 50%;
    justify-content: space-between;
    margin-left: 25% ;
    margin-top: 3%;
}
nav{
    display: flex;
    justify-content: space-between;
}

.pie{
    position: relative;
    bottom: 0vh;
    font-size: 10px;
    background-color: burlywood;
    width: 100vw;

}
.redes, .pie>p{
    border: none;
}