body {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  position: relative;
  background-image: url("/image/light.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
}

.progress-bar {
  height: 6px;
  transition: width 0.4s ease;
}

.question-card {
  transform: translateX(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.question-card.hidden {
  transform: translateX(100%);
  opacity: 0;
  position: absolute;
  pointer-events: none;
}

.option-card {
  transition: all 0.2s ease;
  border-color: #11dd99;
  border-width: 2px !important;
  border-radius: 40px !important;
  background-color: #111111;
}

.option-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.option-card.selected {
  border-color: #11dd99;
  border-width: 4px;
  background-color: #111111;
}

.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #f00;
  opacity: 0;
}
.font-medium {
  color: #fff;
}
.bg-button {
  border-width: 2px !important;
  border-radius: 40px !important;
  border-color: #11dd99;
  background: #111111;
}
.header {
  margin-bottom: 60px;
}

.header__logo {
  max-width: 91px;
}
.footer {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 900px) {
  .footer {
    flex-wrap: wrap;
  }
}

.footer__paragraph {
  font-style: normal;
  font-size: 14px;
  line-height: 140%;
  color: #ddd;
  text-decoration: none;
}

@media (max-width: 900px) {
  .footer p:nth-of-type(1) {
    order: 1;
  }
}

@media (max-width: 900px) {
  .footer p:nth-of-type(3) {
    order: 2;
  }
}

@media (max-width: 900px) {
  .footer p:nth-of-type(2) {
    order: 3;
    width: 100%;
    text-align: center;
    margin-top: 30px;
  }
}

@media (max-width: 685px) {
  .footer p:nth-of-type(2) {
    margin-top: 20px;
  }
}
.green {
  background: #11dd99;
}
.circle {
  min-width: 23px;
}
