/* Пример стилей для вашей игры */
.game-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
}

img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

#game-info {
  margin-top: 20px;
}

#answer-input {
  width: 200px;
  padding: 5px;
  margin-right: 10px;
}

#signal {
  width: 100px;
  height: 30px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 12px;
}

.correct {
  background-color: #4CAF50;
  color: white;
}

.incorrect {
  background-color: #F44336;
  color: white;
}

.tab-container {
  margin-top: 20px;
  text-align: center;
}

.tab {
  display: inline-block;
  padding: 10px 20px;
  cursor: pointer;
  border: none;
}

.tab-content {
  display: none;
}