html, body {
  margin: 0;
  height: 100%;
  position: relative;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;

  h1 {
    text-align: center;
  }
}

textarea {
    width: 100%;
    resize: vertical;
}

.container {
  max-width: 600px;
  padding-inline: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem
}
