@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #1f1f1f;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  width: 80%;
  max-width: 600px;
  background-color: #333;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

h1 {
  text-align: center;
  color: #fff;
  font-size: 32px;
  margin-bottom: 20px;
}

.input,
.output {
  margin-bottom: 20px;
}

label {
  font-weight: bold;
  color: #fff;
}

textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  resize: none;
  font-size: 18px;
  color: #333;
  background-color: #fff;
  outline: none;
}

button {
  padding: 10px 20px;
  margin: 0 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  color: #000;
  background-color: linear-gradient(to right, skyblue, #ff355e);
  transition: background-color 0.3s ease;
}

button:hover {
  filter: brightness(1.2);
}

@media (max-width: 768px) {
  .container {
    width: 90%;
  }
}
