@import url(https://use.typekit.net/rtp3ioz.css);
* {
  margin: 0;
}

body {
  font-family: "cc-thismanthismonster-var", sans-serif;
  font-variation-settings: "BITE" 0, "WONK" 0, "CHEW" 0;
  background-color: #000;
  color: #ff6a00;
}

.first-step {
  width: 350px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.first-step span {
  display: block;
}

@media (min-width: 768px) {
  .first-step {
    width: 600px;
  }
}
@media (min-width: 1200px) {
  .first-step {
    width: 1100px;
  }
}
.first-step,
.second-step {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

h1 {
  font-size: 20px;
  color: #ffffff;
  /* texte blanc */
}

@media (min-width: 768px) {
  h1 {
    font-size: 30px;
  }
}
@media (min-width: 1200px) {
  h1 {
    font-size: 50px;
  }
}
button {
  font-family: "ltr-beosans-hard-r23-bold", sans-serif;
  font-size: 18px;
  cursor: pointer;
  background: none;
  color: #ffffff;
  font-weight: 800;
  border: solid 2px;
  padding: 10px 20px;
  border-radius: 10px;
  transition: all 0.2s;
}

.hover:hover {
  -webkit-animation: shake 0.15s infinite;
          animation: shake 0.15s infinite;
  background-color: #ff6a00;
  border: solid 2px #ff6a00;
  color: #000;
}

@-webkit-keyframes shake {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(-1px, 0);
  }
  40% {
    transform: translate(1px, 1px);
  }
  60% {
    transform: translate(0, -1px);
  }
  80% {
    transform: translate(-1px, 1px);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes shake {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(-1px, 0);
  }
  40% {
    transform: translate(1px, 1px);
  }
  60% {
    transform: translate(0, -1px);
  }
  80% {
    transform: translate(-1px, 1px);
  }
  100% {
    transform: translate(0, 0);
  }
}
input {
  font-family: "cc-thismanthismonster-var", sans-serif;
  font-variation-settings: "BITE" 0, "WONK" 0, "CHEW" 0;
  background: none;
  color: #fff;
  border: solid 2px;
  padding: 10px 20px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

@media (min-width: 768px) {
  input {
    font-size: 18px;
  }
}
#send-btn {
  color: #fff;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

#send-btn:hover {
  color: #000;
}

#idk-btn {
  font-size: 18px;
  font-family: "cc-thismanthismonster-var", sans-serif;
  font-variation-settings: "BITE" 0, "WONK" 0, "CHEW" 0;
  border: none;
}

#idk-btn:hover {
  text-decoration: underline;
}

video {
  width: 300px;
  border-radius: 18px;
}

@media (min-width: 768px) {
  video {
    width: 500px;
  }
}
@media (min-width: 1200px) {
  video {
    width: 500px;
  }
}
#feedback {
  font-weight: bold;
  margin-bottom: 10px;
  position: relative;
  font-size: 18px;
}

#question-container {
  display: flex;
  justify-content: center;
}

/*# sourceMappingURL=app.css.map*/