/* Google Font - League Spartan */
@font-face {
  font-family: 'League Spartan';
  src: url('../assets/fonts/LeagueSpartan-VariableFont_wght.woff2') format('woff2-variations');
}

/* Main Container */
.exercise-container {
  width: 40rem;
  display: flex;
  flex-direction: column;
  
  position: relative;
  height: 34rem;
}

/* Question Container */
.question-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 40rem;
  max-width: 60rem;
  margin: 0 auto;
}

/* Question Row */
.question-row {
  display: flex;
  flex-direction: column;
  background-color: #f9f9f9;
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.1);
}

/* Question with Hint */
.question-with-hint {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Question */
.question {
  font-size: 1.2rem;
  font-weight: bold;
  color: #00699F;
}

/* Hint Container */
.hint-container {
  display: flex;
  align-items: center;
  position: relative;
}

.hint-button {
  width: 2rem;
  height: 2rem;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.hint-icon {
  width: 2rem;
  height: 2rem;
  transition: transform 0.2s ease;
}

.hint-button:hover .hint-icon {
  transform: scale(1.1);
}

.hint-text {
  display: none;
  position: absolute;
  right: 0;
  top: 2.5rem;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  z-index: 10;
  box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.1);
  font-size: 1rem;
  color: #333;
  min-width: 15rem;
}

.hint-container.active .hint-text {
  display: block;
}

/* Hide elements */
.hidden {
  display: none;
}


footer{
  display:none;
}