@font-face {
  font-family: "nintendo";
  src: url("../assets/nintendo.otf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "kosugi";
  src: url("../assets/kosugi.ttf");
  font-weight: normal;
  font-style: normal;
}

body {
  background: url("../assets/image.png") repeat;
  background-size: 150px;
  animation: scrolling 30s linear infinite;
  font-family: "nintendo";
  color: white;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@-webkit-keyframes scrolling {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 1500px 1500px;
  }
}

@keyframes scrolling {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 1500px 1500px;
  }
}

.mainCard {
  background-color: #1f9ca5e3;
  margin: 0 auto;
  text-align: center;
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 85vw;
  max-width: 1000px;
  height: auto;
  animation: fadeInSlideUp 1.2s ease-out forwards;
  opacity: 0;

  transform: translateY(20px);
}

.logo {
  width: 50vh;
  max-width: 90%;
  padding-bottom: 5vh;
  transition: 0.2s;
}

.logo:hover {
  transform: scale(1.1);
}

.options {
  padding: 4vh;
}
.button {
  font-size: 2.5vh;
  padding: 6vh 0;
  width: 70vw;
  max-width: 400px;
  color: white;
  background-color: #165f64;
  border-radius: 15px;
  height: 10vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.2s;
}
.buttonAccess {
  text-decoration: none;
}
.button:hover {
  transform: scale(1.1) rotate(1deg);
  background-color: white;
  color: rgb(255, 168, 79);
}

.buttonAccess {
  padding: 10px;
}

@keyframes fadeInSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    width: 85vw;
    opacity: 1;
    transform: translateY(0);
  }
}

.termsWrapper{
  margin: 0 100px;
  font-size: 1.5vh;
}

.titleSUB{
  font-size: 3vh;
}
.textSUB{
  font-size: 2.5vh;
  font-family: "kosugi";
}

.sheet {
  width: 100vh;
  max-width: 99%;
  padding-bottom: 5vh;
  transition: 0.2s;
}