/* style.css */
body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #fec844;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.playground-container {
  width: 80%;
  max-width: 600px;
  text-align: left;
  padding: 20px;
  background: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
}

h1 {
  font-size: 24px;
  color: #333;
}

textarea {
  width: 100%;
  height: 200px;
  padding: 5px;
  font-family: monospace;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ccc;
  resize: vertical;
  margin-bottom: 10px;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  color: white;
  background-color: #fd4338;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #105BB5;
}

.output-container {
  margin-top: 20px;
  text-align: left;
}

pre {
  background-color: #f9f9f9;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  color: #333;
  font-family: monospace;
  overflow-x: auto;
}
