body {
  font-family: Arial, sans-serif;
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('/Aqua.webp');
  background-color: rgba(0, 0, 0, 0.3);
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
}

.container {
  text-align: center;
}

textarea {
  width: 300px;
}

button {
  padding: 8px 16px;
  font-size: 16px;
  cursor: pointer;
}

h1 {
  color: #fff;
  -webkit-text-stroke: 1px rgb(0, 0, 0);
}

@media screen and (max-width: 768px) {
  body {
    font-size: 25px; /* Increase the font size for smaller screens */
  }
}