@font-face {
  font-family: 'TrajanRecitation-Web';
  src: url('/fonts/TrajanRecitation-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

body {
  background: #f5f0e8;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-family: 'TrajanRecitation-Web', serif;
  color: #5a4a3a;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

#editor {
  font-size: 2rem;
  line-height: 1.6;
  white-space: pre-wrap;
  outline: none;
  padding: 2rem;
  /* max-width: min(800px, 100vw); */

  margin: 0 auto;
  text-align: center;
}

.download-link {
  display: inline-block;
  margin-top: 2rem;
  font-size: 1rem;
  color: #5a4a3a;
  text-decoration: none;
  border: 1px solid #5a4a3a;
  padding: 0.5rem 1.5rem;
}

@media (max-width: 640px) {
  h1 {
    font-size: 2rem;
  }

  #editor {
    font-size: 1.25rem;
    padding: 1rem;
  }

  .download-link {
    font-size: 0.85rem;
    padding: 0.4rem 1.2rem;
  }
}