:root {
  --brand: #f37021;
  --text-primary: #7d7d7d;
  --scrollbar-track: #e5e5e5;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Baskervville", serif;
  color: var(--text-primary);
  line-height: inherit;
}

.wrap {
  max-width: 1264px;
  margin: 0 auto;
  padding: 100px 60px 40px;
  text-align: center;
}

.statements {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.statements p {
  font-size: 3.125rem;
  line-height: 4rem;
  margin: 0;
}

.contact {
  font-size: 1.875rem;
  line-height: 40px;
  margin-top: 4rem;
}

.contact p {
  margin: 0;
}

.contact a {
  color: inherit;
}

.underline {
  text-decoration: underline;
}

.logo-dot {
  display: flex;
  margin: 2rem auto 0;
  width: 34px;
  height: 34px;
  background-color: var(--brand);
  border-radius: 9999px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.rabbits {
  max-width: 1173px;
  width: 100%;
  height: auto;
  aspect-ratio: 1620 / 2343;
  margin: 2rem auto 0;
  display: block;
}

.copyright {
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-top: 2.5rem;
}

@media (min-width: 1024px) {
  .wrap {
    padding-bottom: 100px;
  }

  .statements {
    gap: 7rem;
  }

  .statements p {
    font-size: 7.5rem;
    line-height: 8.75rem;
  }

  .contact {
    font-size: 3.75rem;
    line-height: 80px;
    margin-top: 7rem;
  }

  .logo-dot {
    margin-top: 7rem;
    margin-bottom: 7rem;
  }
}

::-webkit-scrollbar {
  width: 16px;
  height: 16px;
  background-color: var(--scrollbar-track);
}

::-webkit-scrollbar-thumb {
  background-color: var(--brand);
  border-radius: 10px;
}

html {
  scrollbar-width: auto;
  scrollbar-color: var(--brand) var(--scrollbar-track);
}
