@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
body {
  font-family: Montserrat, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #264653;
  color: white;
}
header {
  background-color: #2A9D8F;
  color: white;
  padding: 10px 0;
  text-align: center;
}
.container {
  padding: 15px;
  max-width: 800px;
  margin: auto;
}
h1 {
  font-size: 24px;
  margin-bottom: 20px;
}
p {
  font-size: 16px;
  line-height: 1.6;
}
button {
  background-color: #4CAF50;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}
button:hover {
  background-color: #45a049;
}
.speakBtn {
  background-color: #4CAF50;
  color: white;
  padding: 3px 5px;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  font-size: 13px;
}
.speakBtn:hover {
  background-color: #45a049;
}
.container canvas {
    width: 100%; /* Make it responsive to the container width */
    max-width: 100vw; /* Limit to viewport width */
    display: block; /* Center the canvas horizontally */
    margin: 0 auto; /* Center the canvas vertically */
}

@media (max-width: 600px) {
  h1 {
      font-size: 20px;
  }
  p {
      font-size: 14px;
  }
  button {
      font-size: 14px;
      padding: 8px 12px;
  }
}