* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Courier New", Courier, monospace;
  background: #fcfcfb;
  color: #151515;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/paper-fibers.png");
  opacity: 0.05;
  pointer-events: none;
}

a {
  color: #8b1e1e;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 5rem 1.2rem;
}

h1 {
  font-weight: 400;
  color: #8b1e1e;
  font-size: 2.6rem;
  letter-spacing: 1px;
  text-transform: lowercase;
  margin-bottom: 0.5rem;
}

.tagline {
  color: #666;
  margin-bottom: 3rem;
  font-size: 0.95rem;
}

.label {
  margin-top: 3rem;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  color: #777;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1rem;
}

.nav a {
  font-size: 1rem;
}

.block {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e6e6e6;
  line-height: 1.7;
  color: #222;
}

input, textarea {
  width: 100%;
  border: 1px solid #ddd;
  padding: 0.8rem;
  font-family: inherit;
  margin-top: 0.5rem;
  background: #fff;
}

button {
  margin-top: 1rem;
  background: #8b1e1e;
  color: white;
  border: none;
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  font-family: inherit;
}

footer {
  margin-top: 6rem;
  font-size: 0.75rem;
  color: #777;
}

@media (max-width: 600px) {

  .wrap {
    padding: 2.5rem 1.2rem;
  }

  h1 {
    font-size: 2rem;
    letter-spacing: 0.5px;
  }

  .tagline {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }

  .block {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }

  button {
    width: 100%;
  }
}
