body {
  margin: 0;
  padding: 0;
  background-image: url("../img/backPixel.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#counter {
  background-color: rgba(164, 148, 94, 0.9);
  padding: 15px 20px 15px 20px;
  border-radius: 5px;
  position: absolute;
  text-transform: uppercase;
  left: 65px;
  top: 95px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  h2 {
    margin: 0;
  }
  p {
    font-size: 20px;
    margin: 0;
  }
}
.container {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  #questionBox {
    position: absolute;
    flex-direction: column;
    height: 100%;
    width: 800px;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(164, 148, 94, 0.9);
    img {
      width: 600px;
      height: auto;
    }
    #form {
      margin-top: 10px;
      background-color: antiquewhite;
      padding: 10px 30px 10px 30px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      font-family: monospace;
      font-size: 18px;
      label {
        margin-left: 10px;
        font-family: monospace;
        cursor: pointer;
        font-size: 18px;
      }
      button {
        font-size: 18px;
        font-family: monospace;
        margin-left: 10px;
        border: 1px solid black;
        border-radius: 4px;
        padding: 5px;
        cursor: pointer;
      }
    }
  }
}

#game-board {
  position: relative;
  height: 100%;
  width: 800px;
  /* background-color: rgba(164, 148, 94, 0.8); */
  overflow: hidden;
}

#game-over {
  display: flex;
  flex-direction: column;
  position: absolute;
  height: 100%;
  width: 800px;
  background-color: rgba(0, 0, 0, 0.7);
  color: rgb(216, 119, 34);
  font-size: 45px;
  display: none;
  justify-content: center;
  align-items: center;
  p {
    font-family: monospace;
  }
  h1 {
    text-align: center;
    font-family: monospace;
    margin-top: 20px;
  }
  #play-again {
    width: 280px;
    height: 80px;
    font-size: 35px;
    background-color: #47b44b;
    color: white;

    border-radius: 5px;
    padding: 10px;
    font-family: monospace;
  }
  #play-again:hover {
    cursor: pointer;
  }
}
#name-form {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #47b44b;
  padding: 20px;
  border-radius: 3px;
  font-size: 20px;
  font-family: monospace;
  color: white;
}
#start-btn {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 300px;
  height: 90px;
  background-color: #47b44b;
  color: white;
  border: none;
  border-radius: 3px;
  font-size: 30px;
  cursor: pointer;

  font-family: monospace;
}
#correct-answer {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px;
  margin: 0;
  border-radius: 5px;
  background-color: rgba(255, 252, 252, 0.5);
  color: green;
  font-size: 20px;
  display: none;
  p {
    font-family: monospace;
    margin: 0;
  }
}

#incorrect-answer {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 10px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.5);
  color: red;
  font-size: 22px;
  display: none;
  p {
    font-family: monospace;
    margin: 0;
  }
}
#game-description {
  background-color: rgba(164, 148, 94, 0.8);
  font-family: monospace;
  color: white;
  width: 700px;
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* background-color: rgba(255, 252, 252, 0.5); */
  padding: 20px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  
  .parragraph {
    display: flex;
    align-items: center;
    p {
      font-weight: bolder;
      margin-right: 20px;
      font-family: monospace;
      font-size: 20px;

    }
    img {
      width: 80px;
      height: 60px;
    }
  }
  ul{
    list-style-type: none;
  }
  div {
    display: flex;
  }
  img {
    width: 40px;
    height: 40px;
  }
}
