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

/* Exercise Wrapper */
.exercise-wrapper {
  width: 80rem;
  display: flex;
  justify-content: center;
  padding: 1rem;
}

/* Exercise Container */
.exercise-container {
  width: 60rem;
  height: 36rem;
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

/* Tongue Twisters Container */
.tongue-twisters {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem;
}

/* Twister Row */
.twister-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  border-radius: 0.5rem;
}

/* Text Container */
.text-container {
  flex: 1;
  max-width: 60%;
}

/* Twister Text */
.twister-text {
  font-size: 1.3rem;
  color: #333;
  line-height: 1.6;
}

/* Image Container */
.image-container {
  width: 15rem;
  height: 10rem;
  border-radius: 0.5rem;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Hide footer for this exercise */
footer {
  display: none;
}