body {
  background-color: #e6f2ff;
  font-family: Arial, sans-serif;
  padding: 20px;

  display: flex;
  justify-content: center;
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.info-box {
  background-color: #cce5ff;
  padding: 20px;
  width: 500px;
  box-sizing: border-box;
  margin-bottom: 25px;
}

.main {
  width: 500px;
}

h2 {
  margin-bottom: 10px;
}

textarea {
  width: 100%;
  height: 80px;
  border: none;
  border-bottom: 3px solid black;
  background: transparent;
  font-size: 18px;
  outline: none;
  resize: none;
}

.bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

button {
  background-color: #4da6ff;
  color: white;
  border: none;
  padding: 6px 14px;
  font-weight: bold;
  cursor: pointer;
}

#counter {
  font-weight: bold;
  font-size: 18px;
}

#error-msg {
  color: red;
  font-weight: bold;
  margin-top: 10px;
}

#container p {
  background-color: #ffffff;
  border: 2px solid #4da6ff;
  padding: 12px;
  margin-top: 15px;
  border-radius: 8px;
}