/* Formato Spara pagina principal */
@import url('https://fonts.googleapis.com/css2? family= Dancing+Script:wght@600 & display=swap');

*{
  /* configuraciones iniciales para todos los elementos */
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  background-color: #F6E9E6;
  height: 100vh;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
  width: 100vw;

}

.botonera{
  width: 90vw;
  height: 10vh;
  margin: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;

}


/* Formato botones */
button {
  background: #B69D8F;
  border: none;
  padding: 10px 20px;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  width: 120px;
  text-transform: uppercase;
  cursor: pointer;
  transform: skew(-21deg);
}

span {
  display: inline-block;
  transform: skew(21deg);
}

button::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  left: 0;
  background: rgb(20, 20, 20);
  opacity: 0;
  z-index: -1;
  transition: all 0.5s;
}

button:hover {
  color: #fff;
}

button:hover::before {
  left: 0;
  right: 0;
  opacity: 1;
}

.titulo{
  background-color: #B69D8F;
  font-size: 200%;
  color: rgb(29, 28, 28);
  text-align: center;
  font-family:'Dancing Script', cursiva;
  width: 35%;
  margin: auto;
  border-radius: 5em;
}
  
.info {
  background-color:  #EDD6C9;
  padding: 5px;
  text-align:left;
  margin: auto;
  margin-top: 3%;
  border-radius: 3em;
  width: 70%; 
  height: 65%; 
  display: flex;
  justify-content: center;
  align-items: center;
}
  
.texto{
  width: 70%;
  padding-right: 2%;
  font-size: 1.5rem;
  text-align: justify;
}

.foto{
  width: 30%;
}  

.foto img {
  width: 75%;
  border-radius: 1em;
  margin-left: 10%;
}