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

* {
  margin: 0;
}

body {
  background-color: #fbfaf4;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.container {
  height: 100svh;
}

.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

button#refresh {
  background: transparent;
  border: none;
  color: #4b4b4b;
}

.nav {
  width: 100%;
  position: absolute;
  bottom: 40px;
  padding: 0 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;

  a {
    font: 1em sans-serif;
    color: #ac4518;
    text-decoration: none;

    &:hover {
      text-decoration: underline;
    }
  }
}

h1 {
  color: #ac4518;
}

h1#message {
  margin-bottom: 1rem;
}

p {
  font-size: 1.5em;
  color: #ac4518;
  padding-inline: 10px;
}

form {
  height: 100svh;
  gap: 1em;

  textarea {
    margin-inline: auto;
    font: 1.5em sans-serif;
    width: 80ch;
    max-width: 90svw;
    height: 150px;
    border-radius: 4px;
    border: 15px solid transparent;
    outline: 1px solid #dadcde;
  }

  button {
    font: 1.5em sans-serif;
    /* Match the font styling of the textarea */
    padding: 0.2em 1em;
    border: 1px solid #ccc;
    background: #eee;
    cursor: pointer;
    border-radius: 4px;
  }
}
