@font-face {
  font-family: f;
  src: url("/media/games/dad-jokes-duel/fonts/Playfulion.otf");
}
#full-area {
  width: 100%;
  height: 100vh;
  background: #000;
  position: absolute;
  overflow: hidden;
  user-select: none;
  font-family: f;
}
#full-area .screamAnim {
  animation: screamAnim 0.2s infinite;
}
#full-area #game-area {
  position: absolute;
  width: 1280px;
  height: 720px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}
#full-area #game-area #content {
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: absolute;
  padding: 20px;
  z-index: 9999;
  background: url("/media/games/dad-jokes-duel/images/background.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@keyframes scroll-bg {
  0% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(-2000px);
    /* Match the image's width */
  }
}
#full-area #game-area #content #circleBg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
  height: auto;
  width: 110%;
  animation: rotateInf 50s linear infinite;
  transform-origin: center center;
  opacity: 0.5;
  z-index: 9998;
}
#full-area #game-area #content #chair {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 9998;
}
@keyframes rotateInf {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
#full-area #game-area #content #home-section {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 999999;
  position: absolute;
  left: 0;
}
#full-area #game-area #content #home-section #home-right {
  position: absolute;
  left: 50%;
  top: 43%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 77%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -20px;
}
#full-area #game-area #content #home-section #logo {
  height: 500px;
  justify-content: center;
  display: flex;
  margin: 0 auto;
  animation: logoAnim 1.3s infinite;
}
#full-area #game-area #content #home-section #home-btns {
  width: 70%;
  margin-left: 11%;
  justify-content: space-around;
  display: flex;
  margin-top: 50px;
}
#full-area #game-area #content #home-section #home-btns img {
  width: 300px;
  cursor: pointer;
}
#full-area #game-area #content #end-section {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 999999999;
  background-position: bottom center;
}
#full-area #game-area #content #end-section .content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#full-area #game-area #content #end-section .content #score-content {
  position: absolute;
  width: 790px;
  height: 205px;
  margin-top: -15px;
  padding: 15px;
  font-size: 105px;
  display: flex;
  color: white;
  text-shadow: -2px 2px 4px rgba(0, 0, 0, 0.6);
}
#full-area #game-area #content #end-section .content #score-content .sc {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#full-area #game-area #content #end-section .content #score-content #Fscore {
  margin-right: 10px;
}
#full-area #game-area #content #end-section .content #score-content #NFscore {
  margin-left: 10px;
}
#full-area #game-area #content #end-section .content #end-container,
#full-area #game-area #content #end-section .content #end-btns img {
  opacity: 0;
  transform: scale(0.8);
  transition: transform 0.5s ease, opacity 0.5s ease;
}
#full-area #game-area #content #end-section .content #end-btns img {
  animation: floatY 3s ease-in-out infinite;
  transform-origin: center;
}
@keyframes floatY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}
#full-area #game-area #content #end-section .content #end-container.visible,
#full-area #game-area #content #end-section .content #end-logos.visible,
#full-area #game-area #content #end-section .content #end-btns img.visible {
  opacity: 1;
  transform: scale(1);
}
#full-area #game-area #content #end-section .content #end-container {
  height: 430px;
  justify-content: center;
  display: flex;
  margin: 0 auto;
  margin-top: -105px;
}
#full-area #game-area #content #end-section .content #end-logos {
  position: absolute;
  height: 167px;
  width: auto;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
}
#full-area #game-area #content #end-section .content #end-logos.visible1 {
  opacity: 1;
  /* Fade in */
}
#full-area #game-area #content #end-section .content .sc, #full-area #game-area #content #end-section .content #end-btns img, #full-area #game-area #content #end-section .content #end-container {
  transform: scale(0);
  opacity: 0;
}
#full-area #game-area #content #end-section .content #end-btns {
  left: 50%;
  top: 68.5%;
  transform: translate(-50%, -50%);
  position: absolute;
  justify-content: center;
  display: flex;
  width: 55%;
}
#full-area #game-area #content #end-section .content #end-btns img {
  height: 90px;
  cursor: pointer;
  margin: 0 auto;
  margin-bottom: -20px;
  display: flex;
}
#full-area #game-area #content #end-section .content #end-btns img:active {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}
#full-area #game-area #content #play-section {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 9999;
  left: 0;
  top: 0;
  background-position: bottom center;
}
#full-area #game-area #content #play-section .content {
  position: relative;
  height: 100%;
  width: 100%;
}
#full-area #game-area #content #play-section .content #question, #full-area #game-area #content #play-section .content #a1, #full-area #game-area #content #play-section .content #a2 {
  transition: transform 0.3s ease, opacity 0.3s ease;
}
#full-area #game-area #content #play-section .content #question {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
#full-area #game-area #content #play-section .content #question img {
  height: 370px;
}
#full-area #game-area #content #play-section .content #question p {
  position: absolute;
  color: white;
  text-shadow: -2px 2px 4px rgba(0, 0, 0, 0.6);
  width: 720px;
  height: 300px;
  padding: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  font-size: 65px;
  opacity: 0;
  transition: 0.5s ease-out;
}
#full-area #game-area #content #play-section .content #answers {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 35px;
  width: 100%;
  gap: 150px;
}
#full-area #game-area #content #play-section .content #answers img {
  height: 170px;
  cursor: pointer;
  animation: floatY 3s ease-in-out infinite;
  transform-origin: center;
}
#full-area #game-area #content #scoreboard-section {
  width: 100%;
  height: 100%;
  z-index: 99999999;
  position: absolute;
  left: 0;
  top: 0;
  background: #00000097;
}
#full-area #game-area #content #scoreboard-section h1 {
  color: white;
  font-size: 70px;
  text-align: center;
  color: black;
  letter-spacing: 10px;
  top: 120px;
  width: 100%;
  z-index: 2;
  position: absolute;
}
#full-area #game-area #content #scoreboard-section #back-btn {
  left: 100%;
  top: 100%;
  position: absolute;
  transform: translate(-100%, -100%);
  margin: -5px -25px;
  cursor: pointer;
  z-index: 1;
  cursor: pointer;
}
#full-area #game-area #content #scoreboard-section #back-btn img {
  width: 200px;
}
#full-area #game-area #content #scoreboard-section #back-btn p {
  font-size: 50px;
  color: white;
  font-family: f;
  padding: 0 30px;
  border: 2px solid white;
  border-radius: 15px;
  background: #000000a1;
}
#full-area #game-area #content #scoreboard-section #scores {
  width: 67%;
  height: 520px;
  position: absolute;
  background: url("/media/games/dad-jokes-duel/images/parchment.png");
  background-size: cover;
  top: 50%;
  left: 48%;
  transform: translate(-50%, -50%) scale(1.1);
  padding-top: 175px;
}
#full-area #game-area #content #scoreboard-section #scores h6 {
  color: black;
  font-family: f;
  font-size: 70px;
  position: relative;
  width: 75%;
  text-align: center;
  top: 20%;
  transform: translateY(-100%);
  -webkit-text-stroke: 3px rgba(0, 0, 0, 0.716);
  margin-bottom: 20px;
}
#full-area #game-area #content #scoreboard-section #scores p {
  color: black;
  letter-spacing: 5px;
  font-size: 35px;
  -webkit-text-stroke: 2px rgba(0, 0, 0, 0.716);
  margin: -37px 0;
  margin-left: 220px;
}
#full-area #game-area #content #scoreboard-section #scores p img {
  height: 50px;
  margin-right: 20px;
  margin-top: -10px;
  margin-left: 5px;
}
#full-area #game-area #content #scoreboard-section #scores p span:nth-child(1) {
  position: relative;
  top: 10px;
  font-size: 65px;
  margin-right: 50px;
  -webkit-text-stroke: 3px rgba(0, 0, 0, 0.716);
}

.end {
  animation: end 1s ease-out;
  animation-fill-mode: forwards;
}

@keyframes logoAnim {
  0% {
    transform: scale(1) rotate(-5deg);
  }
  50% {
    transform: scale(0.96) rotate(0deg);
  }
  100% {
    transform: scale(1) rotate(-5deg);
  }
}
@keyframes seqAnim {
  0% {
    transform: scale(1) rotate(-15deg);
    transform-origin: bottom right;
  }
  50% {
    transform: scale(0.96) rotate(-5deg);
    transform-origin: bottom right;
  }
  100% {
    transform: scale(1) rotate(-15deg);
    transform-origin: bottom right;
  }
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.96);
  }
  100% {
    transform: scale(1);
  }
}
@media (max-width: 600px) {
  #full-area #game-area #content #circleBg {
    height: 120%;
    width: auto;
  }
  #full-area #game-area #content #end-section .content #score-content {
    position: absolute;
    width: 790px;
    height: 205px;
    margin-top: -15px;
    padding: 15px;
    font-size: 105px;
    display: flex;
    color: white;
    text-shadow: -2px 2px 4px rgba(0, 0, 0, 0.6);
  }
  #full-area #game-area #content #end-section .content #score-content .sc {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  #full-area #game-area #content #end-section .content #score-content #Fscore {
    margin-right: 10px;
  }
  #full-area #game-area #content #end-section .content #score-content #NFscore {
    margin-left: 10px;
  }
  #full-area #game-area #content #end-section .content #end-container {
    height: 390px;
  }
  #full-area #game-area #content #end-section .content #end-logos {
    position: absolute;
    height: 167px;
    width: auto;
    left: 50%;
    top: 44%;
    transform: translate(-50%, -50%);
  }
  #full-area #game-area #content #end-section .content #end-logos.visible1 {
    opacity: 1;
    /* Fade in */
  }
  #full-area #game-area #content #end-section .content .sc, #full-area #game-area #content #end-section .content #end-btns img, #full-area #game-area #content #end-section .content #end-container {
    transform: scale(0);
    opacity: 0;
  }
  #full-area #game-area #content #end-section .content #end-btns {
    left: 50%;
    top: 60.5%;
    transform: translate(-50%, -50%);
    width: 85%;
  }
  #full-area #game-area #content #end-section .content #end-btns img {
    height: 95px;
  }
  #full-area #game-area #content #play-section .content #question {
    margin-top: 150px;
  }
  #full-area #game-area #content #play-section .content #question img {
    height: 310px;
  }
  #full-area #game-area #content #play-section .content #question p {
    font-size: 60px;
  }
  #full-area #game-area #content #play-section .content #answers {
    flex-direction: column;
    gap: 50px;
  }
}
@media (width: 960px) and (height: 480px) {
  #full-area #game-area {
    width: 960px;
    height: 480px;
  }
  #full-area #game-area #content .btnn {
    width: 250px;
    font-size: 25px;
  }
  #full-area #game-area #content #home-section #logo {
    height: 250px;
    max-height: 950px;
  }
  #full-area #game-area #content #home-section #home-btns {
    width: 90%;
    margin-left: -1%;
    justify-content: space-around;
    display: flex;
    margin-top: 0px;
    transform: scale(0.6);
  }
  #full-area #game-area #content #choose-level #levels {
    transform: scale(0.7);
    left: -100px;
    top: 30%;
  }
  #full-area #game-area #content #choose-level #levels img {
    margin: 0 20px;
  }
  #full-area #game-area #content #play-section {
    width: 130%;
    margin-left: -15%;
  }
  #full-area #game-area #content #play-section .content {
    transform: scale(0.65);
  }
  #full-area #game-area #content #play-section .content #question {
    margin-top: -50px;
  }
  #full-area #game-area #content #end-section {
    width: 130%;
    margin-left: -15%;
  }
  #full-area #game-area #content #end-section .content {
    transform: scale(0.65);
  }
  #full-area #game-area #content #end-section .content #end-btns {
    margin-top: 50px;
  }
  #full-area #game-area #content #end-section .content #end-btns img {
    height: 90px;
  }
  #full-area #game-area #content #scoreboard-section h1 {
    font-size: 30px;
    -webkit-text-stroke: 1px darkred;
    left: 60%;
    top: 10%;
  }
  #full-area #game-area #content #scoreboard-section #scores {
    width: 1000px;
    transform: translate(-50%, -50%) scale(0.65);
  }
  #full-area #game-area #content #scoreboard-section #back-btn {
    margin: -10px 0px;
    transform: translate(-100%, -100%) scale(0.8);
  }
}
/*# sourceMappingURL=index.css.map */

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