@font-face {
  font-family: "Relic-Regular";
  src: url("./Relic-Regular.otf") format("opentype");
}

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

body {

  font-family: Arial, sans-serif;

  background: #0b0b0b;

  background-image: radial-gradient(#ffffff05 1px, transparent 1px);
  background-size: 40px 40px;

  color: #f5f5f5;

  min-height: 100vh;

  display: flex;

  justify-content: center;

  align-items: flex-start;

  padding-top: 280px;

}

/* layout */

.container {

  text-align: center;

  max-width: 700px;

  padding: 40px;
}

/* title */

.title {

  font-family: "Cinzel", serif;

  font-size: 72px;

  text-align: center;

  line-height: 1.2;
  letter-spacing: 0px;
  margin-bottom: 20px;
}

.title span {
  display: block;
}


.title span:nth-child(2) {

  font-size: 40px;

  letter-spacing: 2px;

}

/* subtitle */

.subtitle {

  color: #b8b8b8;

  margin-bottom: 40px;

  font-size: 18px;
}

/* vintage button */

.relic-btn {

  font-size: 20px;

  padding: 20px 40px;

  background: #e6e6e6;

  color: #111;

  border: 3px solid #111;

  border-radius: 2px;

  cursor: pointer;

  font-weight: bold;

  text-transform: uppercase;

  letter-spacing: 1px;

  transition: all 0.12s ease;

  box-shadow:
    6px 6px 0 #000;
}

/* hover */

.relic-btn:hover {

  transform: translateY(-2px);

  box-shadow:
    8px 8px 0 #000;
}

/* click */

.relic-btn:active {

  transform: translateY(4px);

  box-shadow:
    2px 2px 0 #000;
}

.footer {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;

  display: flex;
  justify-content: center;

  font-size: 14px;
  color: #999;
}

.footer-link {
  color: #999;
  text-decoration: none;
  border-bottom: 1px dotted #777;
}

.footer-link:hover {
  color: #fff;
  border-bottom: 1px solid #fff;
}

.divider {
  margin: 0 0px;
  opacity: 0.6;
}

.footer-credit {
  opacity: 0.7;
}

.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 24px 24px;
  color: #f5f5f5;
  line-height: 1.7;
}

.legal-page h1 {
  margin-bottom: 24px;
  font-size: 42px;
}

.legal-page p {
  margin-bottom: 18px;
  color: #d0d0d0;
}

.legal-page a {
  color: #f5f5f5;
  text-decoration: none;
  border-bottom: 1px solid #888;
}

.legal-page a:hover {
  border-bottom-color: #fff;
}

.signature {
  margin-top: 32px;
  font-style: italic;
  opacity: 0.8;
}

.back-link {
  margin-top: 40px;
  color: #f5f5f5;
}

.back-btn {
  color: white;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: border-color 0.2s ease;
}

.back-btn:hover {
  border-bottom: 1px solid rgba(255, 255, 255, 0.9);
}

/* mobile adjustments */

@media (max-width: 600px) {

  .title span {
    display: inline;
  }

  /* add spacing between the words */
  .title span:first-child {
    margin-right: 10px;
  }

  body {
    padding-top: 180px;
  }

  .title {
    font-size: 52px;
  }

  .title span:nth-child(2) {
    font-size: 30px;
  }

  .subtitle {
    font-size: 16px;
  }

  .relic-btn {
    font-size: 20px;
    padding: 16px 28px;
  }

  .report-body {
    padding: 10px;
  }

}

body.report-body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0;
}

.report-body p:first-of-type {
  margin-top: 10px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

input, textarea, select {
  padding: 10px;
  background: #111;
  border: 1px solid #333;
  color: #eee;
  font-size: 14px;
}

textarea {
  resize: vertical;
}

.footer-link,
.footer-link:visited {
  color: #999;
}

.report-link {
  margin-top: 36px;
}

.report-link a {
  color: #999;
  text-decoration: none;
  border-bottom: 1px dotted #777;
}

.report-link a:hover {
  color: #fff;
  border-bottom: 1px solid #fff;
}

.legal-body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
}