#question{
  height: 85%;
  margin-top:8vh;
  display: none;
}
#question h1 {
  margin-top: 2.5vh;
  margin-bottom: 0vh;
}
.question-grid {
  width: 90%;
  display: grid;
  left: 0;
  right: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 20px 0;
}

.question-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.question-item:active {
  transform: scale(0.95);
}

.question-icon {
  width: 106px;
  height: 140px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.548);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 15px;
}

.question-text {
  margin-top: 2vw;
  margin-bottom: 0.5vw;
  font-size: 4vw;
  font-weight: 600;
  text-align: center;
}

@media (max-height: 800px) {
  .question-grid {
    gap: 10px;
    margin: 20px 0;
    max-width: 90%;
  }
  
  .question-icon {
    width: 76px;
    height: 100px;
    border-radius: 10px;
  }
  
  .question-text {
    margin-top: 1vw;
    margin-bottom: 0.25vw;
    font-size: 3.7vw;
  }
}