html {
    overflow: hidden;
    height: 100%;
}
body{
  font-family: "Poppins", sans-serif;
  background-image: url('./images/myForest.png');
  background-size: 100% 100%;
  overflow: auto;
   height: 100%; 
}

table, tr,td{
  border-collapse: collapse;
  border: 3px dashed #4d1000;
}
table{
  margin-left: 1%;
  width: 86%;
  height: 95vh;
  table-layout: fixed;
}
tr{
  height: 14%;
}
td{
  position: relative;
  height: 20%;
  width: 16%;
  text-align: center;
  z-index: 3;
}
.output{
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
img{
  height: 100px;
  width: 100px;

}
.clicked .monkey-pic{
  visibility: visible;
}
.monkey-pic{
  visibility: hidden;
  position: absolute;
  right: 0;
  bottom: -40px;
  height: 200px;
  width: 200px;
  pointer-events: none;
}
.walk-path .monkey-pic{
  visibility: visible;
}
.banana{
  height: 50px;
  width: 50px;
  float: right;
  padding-top: 25px;
  padding-right: 10px;
}
.score{
  font-size: 1.5em;

  background-color: rgb(169,169,169);
  background-color: rgba(169,169,169,.6);
}
.timer{
  font-size: 1.5em;
}
.infoBoard{
  z-index: 2;
  position: absolute;
  right: 0;
  margin-right: 11px;
  top: 2%;
  padding: 5px;
  border: 5px solid rgb(94, 59, 16);
  height: 50%;
  width: 10%;
  background-color: rgb(169,169,169);
  background-color: rgba(169,169,169,.6);
  font-weight: bolder;
  margin-top: 15%;
}
@media (max-width: 1200px) {
  .infoBoard{
    width: 12%;
    margin-right: 0px;
    height: 500px;
  }
 
}
.question{
  text-align: center;
  font-size: 2rem;
}

.answerChoice{
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 3rem;
  height: 65%;
  width: 80%;
  padding-top: 10%;
  background-color: rgb(169,169,169);
  background-color: rgba(169,169,169,.6);
}
.container {
  background-color: white;
  padding: 20px;
  margin: 20px auto;
  max-width: 1200px;
}
@media (max-width: 480px) {
  /* Styles for screens with a maximum width of 480px (smartphones) */
  .container {
    max-width: 95%;
    padding: 0.5rem;
  }

  .modal-content {
    width: 90%;
    margin: 40% auto;
  }

  .modal-content p {
    font-size: 16px;
  }

  .modal-header img {
    max-width: 50%;
  }

  .modal-content iframe {
    height: 150px;
    width: 350px;
  }
}
