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

body {
  font-family: "Roboto", sans-serif;
  background-color: #373737;
  color: rgb(233, 233, 233);
  min-height: 100dvh;

  display: grid;
  place-items: center;
}

.wrapper {
  width: clamp(1px, 80%, 600px);
}

textarea {
  background-color: #373737;
  border-radius: 0.2rem;
  border: 1px solid #a7a7a7;
  color: white;
  font-family: "Roboto", sans-serif;
  outline: none;
  padding: 0.5rem 0.5rem;
  width: 100%;
}

.label {
  margin: 30px 0 10px;
  font-size: 14px;
  font-weight: 900;
  color: #b5b5b5;
}
