/* formatos de la pagina inicial */
@import url("https://fonts.googleapis.com/css2?family=Sedgwick+Ave+Display&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@1,100&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda&display=swap");

* {
  /*configuraciones iniciales para todos los elementos*/
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: rgba(141, 137, 140, 0.952);
  width: 98vw;
  height: 100vh;
}

.botonera {
  /*diseño*/
  width: 100%;
  height: 10%;

  /*organizar contenido*/
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

button {
  position: relative;
  overflow: hidden;
  border: 1px solid #18181a;
  color: #18181a;
  display: inline-block;
  font-size: 15px;
  line-height: 15px;
  padding: 18px 18px 17px;
  text-decoration: none;
  cursor: pointer;
  background: #fff;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

button span:first-child {
  position: relative;
  transition: color 600ms cubic-bezier(0.48, 0, 0.12, 1);
  z-index: 10;
}

button span:last-child {
  color: white;
  display: block;
  position: absolute;
  bottom: 0;
  transition: all 500ms cubic-bezier(0.48, 0, 0.12, 1);
  z-index: 100;
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translateY(225%) translateX(-50%);
  height: 14px;
  line-height: 13px;
}

button:after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  transform-origin: bottom center;
  transition: transform 600ms cubic-bezier(0.48, 0, 0.12, 1);
  transform: skewY(9.3deg) scaleY(0);
  z-index: 50;
}

button:hover:after {
  transform-origin: bottom center;
  transform: skewY(9.3deg) scaleY(2);
}

button:hover span:last-child {
  transform: translateX(-50%) translateY(-50%);
  opacity: 1;
  transition: all 900ms cubic-bezier(0.48, 0, 0.12, 1);
}

.titulo {
  /*alto y ancho*/
  width: 65%;
  margin: auto;
  height: 15%;

  /*organizar contenido*/
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;

  /*propiedades del texto*/
  background-color: rgb(0, 0, 0);
  text-align: center;
  font-size: 100%;
  font-family: "Bodoni Moda", serif;
  color: rgb(255, 255, 255);
  letter-spacing: 1.2em;
  border: 6px rgb(255, 255, 255) double;
}
/*espacio con informacion personal*/

.info {
  /*alto y ancho*/
  width: 80%;
  margin: auto;
  margin-top: 3%;

  /*organizar el contenido*/
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: space-around;
}

.texto {
  /*ancho*/
  width: 65%;
  padding-right: 3%;

  /*propiedades del texto*/
  font-family: "Raleway", sans-serif;
  color: rgb(8, 8, 8);
  font-size: 150%;
  text-align: justify;
}

.foto {
  /*ancho*/
  width: 25%;
}

.foto img {
  /*ancho*/
  width: 80%;

  /*borde para la foto*/
  border-radius: 10%;
  border: 3px solid rgb(132, 199, 238);
}
