body {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 24px;
  font-family: Outfit, sans-serif;
  background-color: #570731;
}
body #background {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
body .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 96px;
  z-index: 2;
}
body .content .brand {
  width: 100%;
  height: auto;
}
body .content .brand img {
  width: 100%;
  height: auto;
}
body .content .buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.button {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px 32px;
  background-color: #37051F;
  color: #FFE6FF;
  border-radius: 31px;
  font-size: 24px;
  text-decoration: none;
  transform: perspective(1000px) translate3D(0, 0, 0);
  transition: transform 0.1s ease-in-out;
}
@media (hover: hover) {
  .button:hover {
    transform: perspective(1000px) translate3D(0, 0, 25px);
    transition: transform 0.1s ease-in-out;
  }
}/*# sourceMappingURL=base.css.map */