@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}

body,
html {
  margin: 0;
  padding: 0;
  min-height: 100vh;
}
* {
  box-sizing: border-box;
}
.header {
  visibility: hidden;
}

body {
  background-image: -webkit-linear-gradient(0deg, #32c3ff 30%, #ff7832 30%);
  font-family: "Montserrat", sans-serif;

  display: flex;
  flex-direction: column;
}
.title-wrapper {
  position: fixed;
  left: 0px;
  top: 5vh;
  padding-top: 1vh;
  width: 30vw;
  height: 100%;
  animation: 0.8s ease-out 0s 1 fadeIn;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}
.logo-section {
  margin: auto;
  width: 90%;
}
.title-section {
  margin: auto;
  width: 90%;
  font-size: max(2.4vw, 20px);
  font-style: normal;
  color: #ffffff;
  font-stretch: semi-condensed;
}
.subtitle-section {
  margin: auto;
  width: 90%;
  font-size: max(1.1vw, 16px);
  color: #ffffff;
}
.poweredtitle-section {
  margin: auto;
  width: 90%;
  font-size: max(0.7vw, 14px);
  color: #ffffff;
}

.menu-container {
  position: fixed;
  right: 0px;
  padding-top: 1vh;
  color: #ffffff;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: 70vw;
}
.button-group {
  width: 100%;
}

.head {
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  font-size: max(0.7vw, 18px);
  opacity: 0;
  visibility: hidden;
  animation-delay: 0.5s;
  animation: 1.5s ease-out 0s 1 fadeIn;
  animation-fill-mode: forwards;
}
.caption {
  color: #ffffff;
  text-align: justify;
  font-size: max(0.6vw, 15px);
  opacity: 0;

  visibility: hidden;
  animation: 2s ease-out 0s 1 fadeIn;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}

.button-default {
  text-align: center;
  text-transform: uppercase;
  width: 75%;
  display: block;
  border: 0px;
  opacity: 0;
  color: #ffffff;
  margin: auto;
  margin-top: 10px;

  visibility: hidden;
  animation: 2s ease-out 0s 1 fadeIn;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}

.button-custom {
  height: max(6vh, 35px);
  will-change: transform;
}
.button-custom:hover {
  transform: scale(1.05) translateX(-1vw);
  transition: all 0.3s ease-in-out;
}
.button-custom:disabled,
.button-custom[disabled] {
  height: max(7vh, 50px);
  cursor: not-allowed;
  pointer-events: none;
}

.button-custom-content {
  display: block;
  font-size: max(0.6vw, 15px);
  will-change: transform;
}
.button-custom-content:hover {
  -webkit-font-smoothing: subpixel-antialiased;
}

.group1 {
  background-color: #412ddc;
  color: #ffffff;
}
.group1:disabled,
.group1[disabled] {
  background-color: #cacaca;
}

.group2 {
  background-color: #ffdc41;
  color: #412ddc;
}
.group2:disabled,
.group2[disabled] {
  background-color: #cacaca;
}
.group3 {
  background-color: #32c3ff;
  color: #412ddc;
}
.group3:disabled,
.group3[disabled] {
  background-color: #cacaca;
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 100px;
  background-color: #f0f0f0;
  padding-left: 1vw;
  padding-right: 1vw;
}

.footer-img {
  width: 200px;
  height: fit-content;
}
.row {
  align-items: center;
  text-align: center;
  display: flex;
  justify-content: space-between;
  color: #222;
  width: 80%;
  line-height: 1.625;
  margin: auto;
  height: 100%;
}
.footer-a {
  text-decoration: none;
}
