.welcome {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background-image: url(../assets/data/images/background.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  color: #FFD700;
  transition: all 2s ease-in;
  opacity: 0;
  transform: translateY(-100%);
}

.welcome.active {
  padding: 0 15px;
  transform: translateY(0);
  opacity: 1;
}

.welcome.hide,
.home.hide {
  top: -100%;
  opacity: 0;
}

.welcome h2 {
  font-size: 2.4rem;
  font-family: var(--sacramento);
  font-weight: 400;
}

.welcome figure {
  display: inherit;
  align-items: inherit;
  justify-content: inherit;
  flex-direction: inherit;
  margin: 0;
}

.welcome figure img {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-md);
  border: 2px solid #fff;
}

.welcome figure figcaption {
  font-size: var(--fontSize-heading-base);
  font-family: var(--sacramento);
  font-weight: 400;
  margin-top: .5rem;
}

.welcome p span {
  max-height: 130px;
  line-height: 4rem;
  font-size: 2rem;
  margin: 2.5rem 0;
  display: block;
  overflow: hidden;
}

.welcome button {
  display: inherit;
  align-items: inherit;
  justify-content: inherit;
  gap: .4rem;
  color: #000;
  padding: .5rem 1rem;
  border: none;
  transition: var(--transition-small);
  border-radius: 15px;
  cursor: pointer;
}

.welcome button:hover {
  color: #fff;
  background-color: #000;
}

.welcome button i {
  font-size: 1.2rem;
}