@font-face {
  font-family: "Bebas regular";
  src: url("./fonts/BebasNeueRegular.otf") format("opentype");
  font-style: normal;
}

@font-face {
  font-family: "Bebas bold";
  src: url("./fonts/BebasNeueBold.otf") format("opentype");
  font-style: normal;
}

@font-face {
  font-family: "Hurme geometric light";
  src: url("./fonts/HurmeGeometricLight.otf") format("opentype");
  font-style: normal;
}

@font-face {
  font-family: "Hurme geometric regular";
  src: url("./fonts/HurmeGeometricSansRegular.otf") format("opentype");
  font-style: normal;
}

@font-face {
  font-family: "Hurme geometric semibold";
  src: url("./fonts/HurmeGeometricSansSemiBold.otf") format("opentype");
  font-style: normal;
}

@font-face {
  font-family: "Hurme geometric bold";
  src: url("./fonts/HurmeGeometricSansBold.otf") format("opentype");
  font-style: normal;
}

.font-bebas-regular {
  font-family: "Bebas regular", sans-serif;
}

.font-bebas-bold {
  font-family: "Bebas bold", sans-serif;
}

.font-hurme-light {
  font-family: "Hurme geometric light", sans-serif;
}

.font-hurme-regular {
  font-family: "Hurme geometric regular", sans-serif;
}

.font-hurme-semibold {
  font-family: "Hurme geometric semibold", sans-serif;
}

.font-hurme-bold {
  font-family: "Hurme geometric bold", sans-serif;
}

.gratient-text {
  background: linear-gradient(90deg, #e96234 0%, #f0a64d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.black-text {
  color: #1b2646;
}

.gratient-stroke-text {
  background: linear-gradient(90deg, #e96234 0%, #f0a64d 100%);
  background-size: 200% 200%;
  -webkit-text-stroke: 2px transparent;
  -webkit-background-clip: text;
  color: white;
  letter-spacing: 2px;
}

.gratient-bg {
  background: linear-gradient(90deg, #e96234 0%, #f0a64d 100%);
}

.question {
  color: #1b2646;
  font-family: "Hurme geometric bold", sans-serif;
  letter-spacing: 1px;
  font-size: 20px;
  line-height: 23px;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  animation: fadeIn 0.2s forwards ease-in;
}
