/* Responsive base helpers */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0 1rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-image: linear-gradient(135deg, #000000 0%, #0d182c 100%);
  color: #fffefe;
  background: url("../assets/img/background.webp") no-repeat center center fixed;
  background-size: cover;
  background-position: center;
}

.foto-persona {
  display: block;
  height: 100vh;
}

.foto-persona img {
  width: 20%;
  height: auto;
}

.img-persona {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .foto-persona img {
    width: 70%;
  }
}

.divider {
  width: 50%;
  height: 1px;
  background: #cfcc00;
  margin: 1.6rem auto 1.4rem;
  opacity: 50%;
  animation: fadeIn 0.6s 0.55s forwards;
}

.info-persona {
  display: block;
  background-color: blue;
  height: 100vh;
}

/* From Uiverse.io by BHARGAVPATEL1244 */
button,
a {
  outline: none;
  cursor: pointer;
  border: none;
  padding: 0.9rem 2rem;
  margin: 0;
  font-size: inherit;
  position: relative;
  display: inline-block;
  letter-spacing: 0.05rem;
  font-weight: 700;
  font-size: 17px;
  border-radius: 500px;
  overflow: hidden;
  background: #cfcc00;
  color: ghostwhite;
  text-decoration: none;
}

button span,
a span {
  position: relative;
  z-index: 10;
  transition: color 0.4s;
}

button:hover span,
a:hover span {
  color: black;
}

button::before,
button::after,
a::before,
a::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

button::before,
a::before {
  content: "";
  background: #000;
  width: 120%;
  left: -10%;
  transform: skew(30deg);
  transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

button:hover::before,
a:hover::before {
  transform: translate3d(100%, 0, 0);
}
