*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: Arial, sans-serif;
  background-color: #c0c1ec;
  margin: 0;
}

.container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

h1 {
  background-color: #f2f48b;
  padding-left: 10px;
  padding-right: 10px;
}

textarea {
  width: 300px;
  height: 100px;
  font-size: 18px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  resize: none;
  display: block;
  margin: 0 auto;
  border: 1px solid slategray;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#char-count {
  margin-top: 10px;
  font-size: 18px;
  color: darkslategray;
  font-weight: bold;
}
