* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100%;
  line-height: 130%;
  font-family: "Onest", sans-serif;
}

main {
  background-image: url(../img/bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  padding: 30px 15px 105px;
  position: relative;
}

main > * {
  position: relative;
  z-index: 1;
}

.logo {
  width: 70px;
}

.start-topper {
  width: fit-content;
  border-radius: 999px;
  border: 1px solid #fff;
  padding: 4px 15px;
  color: #fff;
  font-size: 13px;
}

.mauto {
  margin: 0 auto 30px;
}

h1 {
  font-size: 38px;
  color: #fff;
  text-shadow: 0px 0px 4px 0px #00000059;
  width: 900px;
  text-align: center;
}

.start-btn {
  border: none;
  border-radius: 999px;
  background: #ffd817;
  color: #000;
  padding: 10px 35px;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.blurred::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  background: #00000066;
}

.quiz {
    display: none;
  width: 580px;
}

.quiz-div, .form-div {
    display: none;
}

.step {
  color: #fff;
  font-size: 20px;
  text-align: center;
}

.step span {
  font-weight: 700;
}

.question {
  font-size: 22px;
  color: #fff;
}

.question-note {
  font-size: 18px;
  color: #f2f2f2;
  margin: 10px 0 16px;
  line-height: 1.4;
  font-style: italic;
  text-align: center;
}

.answers {
  width: 100%;
}

.answer {
  background: #ffffffcc;
  border: 1px solid #ffffff;
  backdrop-filter: blur(34px);
  -webkit-backdrop-filter: blur(34px);
  color: #1b2439;
  border-radius: 10px;
  padding: 12px 25px;
  margin-bottom: 10px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 25px;
}

.answer-option {
  padding: 3px;
  font-size: 14px;
  background-color: #fff;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  color: #1b2439;
  min-width: 35px;
}

.answer.active {
  background: #e30613;
  color: #fff;
}


footer {
    margin-top: -90px;
    position: relative;
    z-index:1;
    width: 100%;
    background: #fff;
    padding: 15px;
    display: none;
}

footer > div {
    width: 580px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn {
    background: #E30613;
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    font-size: 20px;
    text-align: center;
    border: none;
    height: 60px;

    width: 100%;
}

.btn.back {
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.8;


}

footer .btn {
    pointer-events: none;;
}

.form-div {
    text-align: center;
}

.form-div input {
    border: none;
    display: block;
    padding: 15px;
    width: 100%;
    margin-bottom: 15px;
    font-size: 22px;
    color: #fff;
    border-bottom: 1px solid #FFFFFF;
    background: transparent;

}

.form-div input::placeholder {
    color: #fff;
}

.flex-inputs {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.form-btn {
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
}

.nachat {
    background: #00000066;
    color: #E4E4E4;
    text-align: center;
    font-size: 14px;
    padding: 15px;
    border-radius: 20px;
}


@media(max-width: 600px) {
    h1 {
        font-size: 22px;
    }

  .question-note {
    font-size: 14px;
    margin: 8px 0 14px;
  }

    .answer {
        padding: 12px 15px;
        gap: 15px;
    }
    .flex-inputs {
        flex-direction: column;
        gap: 15px;
    }
}