body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: url("./assets/background.png") 0 0 / cover no-repeat;
}

.container {
  max-width: 1000px;
  margin: 30px auto;
  text-align: center;
  padding: 0 15px;
}

h1,
p,
button {
  font-family: "Coming soon", sans-serif;
  color: #11016aae;
  font-weight: bold;
}

h1 {
  font-size: 36px;
}

.game-pannel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 100px;
}

@media only screen and (max-width: 768px) {
  .game-pannel {
    flex-direction: column;
    row-gap: 30px;
  }
}

.image-box {
  position: relative;
  max-width: 400px;
  flex: 50%;
  opacity: 0.6;
}

.image-box > div {
  position: absolute;
  background-color: rgb(255, 255, 255);
  z-index: 20;
  transition: all 0.3s ease 0s;
}

.level-1 {
  width: 55%;
  height: 10.5%;
  bottom: 8%;
  left: 3%;
  opacity: 0.95;
}
.level-2 {
  width: 15%;
  height: 62%;
  bottom: 18%;
  left: 26%;
  opacity: 0.95;
}
.level-3 {
  width: 36%;
  height: 6%;
  bottom: 75%;
  left: 40%;
  opacity: 0.95;
}
.level-4 {
  width: 4%;
  height: 12%;
  bottom: 68%;
  left: 72%;
  opacity: 0.95;
}
.level-5 {
  width: 27%;
  height: 21%;
  bottom: 49%;
  left: 60%;
  opacity: 0.95;
}
.level-6 {
  width: 6.5%;
  height: 20%;
  bottom: 30%;
  left: 70%;
  opacity: 0.95;
}
.level-7 {
  width: 9%;
  height: 18%;
  bottom: 28%;
  left: 61%;
  opacity: 0.95;
}
.level-8 {
  width: 10%;
  height: 18%;
  bottom: 29%;
  left: 76%;
  opacity: 0.95;
}
.level-9 {
  width: 10%;
  height: 13%;
  bottom: 17%;
  left: 63%;
  opacity: 0.95;
}
.level-10 {
  width: 9%;
  height: 15%;
  bottom: 16%;
  left: 74%;
  opacity: 0.95;
}

img {
  width: 100%;
  height: 100%;
}

.info-section {
  padding: 20px 50px;
  width: 100%;
  height: 100%;
  border: 3px solid #bf122e;
  border-radius: 10px;
  text-align: center;
  flex: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  position: relative;
}

.info-section > div {
  margin-bottom: 20px;
}

#word-box {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 6px;
}
#hint-box {
  font-size: 28px;
  font-weight: bold;
}
#letters-box button {
  margin: 3px;
  padding: 10px 15px;
  background-color: transparent;
  border: 2px solid #bf122e;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  transition: transform 0.2s ease-out 0s;
}
#letters-box {
  margin: 0 auto;
  max-width: 350px;
}
#letters-box button:hover {
  transform: scale(1.1);
}

#letters-box button[disabled] {
  color: white;
  background-color: #11016a;
}

#next-question {
  width: 50px;
  display: inline-block;
  cursor: pointer;
  position: absolute;
  bottom: 50%;
  right: 1%;
  transform: translateY(50%) rotate(180deg);
  transition: transform 0.2s ease-out;
}
#next-question:hover {
  transform: translateY(50%) rotate(180deg) scale(1.1);
}
#next-question img {
  width: 100%;
}
