html,
body {
  margin: 0;
  padding: 0;
  font-family: "Kelly Slab", cursive;
}
html {
  color: #fff;
}

main {
  background-color: #272626;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 3.25rem;
}

.toast-container {
  position: fixed;
  top: 1rem;
  right: 1.5rem;
  display: grid;
  justify-items: end;
  gap: 0.3rem;
}

.toast {
  background-color: green;
  border-radius: 5%;
  padding: 1rem 2rem;
  font-size: 1.5rem;
  font-weight: 500;
  animation: toastAnimation 3000ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

@keyframes toastAnimation {
  0%,
  100% {
    transform: translateY(-150%);
    opacity: 0;
  }
  10%,
  90% {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  place-items: center;
  padding: 10rem 15rem 5rem 15rem;
  gap: 6.25rem;
}

.logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.logo h1 {
  font-size: 3.125rem;
  font-weight: 700;
  font-family: "Inria Serif", serif;
}

.content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content h1 {
  font-size: 3.125rem;
  color: #ff914d;
  margin: 0rem;
}

.content .launch-text {
  font-size: 1.5rem;
  color: #ff914d;
  margin: 1rem 0;
}

.content .update-text {
  font-size: 1.5rem;
  margin: 3rem 0 1rem 0;
}

form {
  width: 30rem;
  position: relative;
}

input {
  margin: 0px;
  padding: 0.2rem 0 0.2rem 0.6rem;
  width: 100%;
  outline: none;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.15);
  color: #fff;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff !important;
  -webkit-box-shadow: 0 0 0px 40rem #252525 inset;
}

::placeholder {
  color: #fff;
  font-size: 1rem;
}

button {
  position: absolute;
  top: 0;
  border-radius: 5px;
  right: 0px;
  z-index: 2;
  border: none;
  top: 20%;
  height: 30px;
  cursor: pointer;
  color: white;
  background-color: transparent;
  transform: translateX(2px);
}

.faq {
  font-family: "Inria Serif", serif;
  margin-top: 7rem;
}

.faq h1 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: white;
}

.faq .question h3 {
  color: #ff914d;
  font-size: 32px;
  font-weight: 700;
}

.faq .question p {
  font-size: 28px;
  font-weight: 400;
  text-align: justify;
}

@media (max-width: 1180px) {
  main {
    background-color: #272626;
    overflow-x: hidden;
  }
  .hero {
    display: grid;
    grid-template-columns: none;
    place-items: center;
    padding: 20rem;
    gap: 1.25rem;
  }
  .line-img {
    transform: rotate(90deg);
    height: 100%;
  }
}

@media (max-width: 600px) {
  h1 {
    max-width: 99%;
  }
  form {
    width: 25rem;
  }
  button {
    left: 76%;
  }
  input {
    width: 90%;
  }
  main {
    background-color: #272626;
    justify-content: center;
    overflow: hidden;
  }
  .hero {
    gap: 0rem;
    padding: 0;
  }

  .content {
    padding: 0rem 10rem;
  }
  form {
    max-width: 20rem;
  }
  .faq {
    margin-top: 4rem;
  }
  .faq .question p {
    font-size: 22px;
    text-align: left !important;
  }
}
