/* styles.css */

#app {
  display: flex;
  flex-direction: column;
  height: 100dvh;
  width: 100vw;
}

#game {
  flex: 1; /* take up remaining vertical space */
  display: flex;
  flex-direction: column;
  align-items: center; /* horizontal centering */
  justify-content: center; /* vertical centering */
  gap: 1rem; /* spacing between elements */
  text-align: center;
  padding: 1rem; /* optional padding */
}

#game img {
  width: 200px;
  height: auto;
  border: 1px solid #ccc;
}

#game input {
  padding: 8px;
  font-size: 16px;
}

#game button {
  padding: 8px 12px;
  font-size: 16px;
  margin-top: 10px;
}

#game .feedback {
  font-size: 32px;
  margin: 20px;
  height: 40px;
}

#game .score {
  font-size: 24px;
  margin: 20px;
}
