*,
*::before,
*::after {
  box-sizing: border-box;
}

@font-face {
  font-family: "dinregular";
  src: url("../fonts/urwdin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "dinbold";
  src: url("../fonts/din-bold.woff2") format("woff2");
}
body {
  margin: 0;
  padding: 0;
  font-size: 1.5rem;
  font-weight: regular;
  font-family: "dinregular", sans-serif;
  color: #fff;
}
body h1, body h2, body h3, body h4 {
  font-family: "dinbold", sans-serif;
  letter-spacing: 1px;
}
body p {
  font-size: 1.5rem;
  line-height: 1.5;
}
body button {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 0.75rem 1.25rem;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-family: "dinregular", sans-serif;
  text-transform: uppercase;
}
body button:hover {
  background: #fff;
  color: #000;
}
body button:hover svg path, body button:hover svg rect {
  fill: #000;
}
body .container {
  display: flex;
  justify-content: flex-end;
  position: relative;
  width: 100vw;
  height: 100vh;
  background-image: url("../img/FVB-21-9.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
body .container .playground {
  background: black;
  display: flex;
  width: 600px;
  height: 600px;
  margin: auto 4rem;
  padding: 2rem;
}
body .container .playground circle {
  stroke-dasharray: 251;
  stroke-dashoffset: 251;
}
body .container .playground circle.animate {
  animation: none;
  stroke-dashoffset: 251;
  animation: fill 10s linear forwards;
}
@keyframes fill {
  to {
    stroke-dashoffset: 0;
  }
}
body .container .playground .progress-elem {
  position: relative;
}
body .container .playground .progress-elem .progress-text-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
}
body .container .playground .progress-elem .progress-text {
  position: relative;
  top: -3px;
  right: -2px;
  color: #fff;
}
body .container .playground .start-container {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
body .container .playground .start-container #fullscreen-btn {
  border: 2px solid #999;
  margin-top: 4rem;
  color: #999;
  text-transform: initial;
}
body .container .playground .start-container, body .container .playground .result-container {
  display: none;
}
body .container .playground .quiz-container {
  gap: 1rem;
  align-items: start;
}
body .container .playground .quiz-container .quiz-content {
  width: 32rem;
}
body .container .playground .quiz-container .quiz-content .quiz-controls {
  margin-top: 2rem;
}
body .container .playground .quiz-container .quiz-content .answer-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
body .container .playground .quiz-container .quiz-content .answer-container #yes-btn {
  background-color: rgb(0, 255, 255);
}
body .container .playground .quiz-container .quiz-content .answer-container #yes-btn:hover {
  background-color: rgba(0, 255, 255, 0.5);
  color: #fff;
}
body .container .playground .quiz-container .quiz-content .answer-container #no-btn {
  background-color: rgb(255, 76, 255);
}
body .container .playground .quiz-container .quiz-content .answer-container #no-btn:hover {
  background-color: rgba(255, 76, 255, 0.5);
  color: #fff;
}
body .container .playground .quiz-container .quiz-content .answer-container .answer-btn {
  width: 100%;
  border: none;
  color: #000;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
}
body .container .playground .quiz-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
body .container .playground .progress {
  font-size: 24px;
  text-transform: uppercase;
}
body .container .playground .result-container {
  display: none;
  color: rgb(0, 255, 255);
}
body .container .playground .result-container h1 {
  color: #fff;
}
body .container .playground .result-container #restart-btn {
  margin-top: 2rem;
}/*# sourceMappingURL=app.css.map */