/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Body layout */
body {
  font-family: "Verdana", sans-serif; /* simpler than monospace */
  display: grid;
  grid-template-rows: auto 1fr auto;
  justify-items: center;
  align-items: start;
  min-height: 100vh;
  background: #fffaf0;
  color: #5c6949;
  padding: 20px;
}

/* Title */
h1 {
  font-size: 2.2rem;
  font-weight: bold;
  color: #5c6949;
  margin-top:50px;
}

/* Creature container */
.creature-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px; /* space between image and text */
  max-width: 600px;
  width: 100%;
}

/* Image */
img {
  width: 80%;
  height: auto;
  border-radius: 10px;
  border: 2px solid #ccc;
  object-fit: cover;
  margin-top: 70px;
}

/* Phrase text */
.language {
  font-size: 18px;
  font-style: italic;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Next button */
#nextBtn {
  padding: 10px 20px;
  font-size: 16px;
  margin-top: 15px;
  background: #5c6949;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

#nextBtn:hover {
  background: #7c8a67;
}

#muteBtn {
  position: fixed;
  top: 15px;
  right: 15px;
  padding: 6px 12px;
  background: #5c6949;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
}

#muteBtn:hover {
  background: #95a5a6;
}
