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

:root {
  --paper: #fff;
  --ink: #222;
  --yellow: #f5ff22;
  --green: #4fd327;
  --pink: #f7b5d9;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Courier Prime", monospace;
}

.page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: safe center;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px 80px;
  text-align: center;
}

p {
  font-size: clamp(36px, 6vw, 76px);
  line-height: 1.08;
  margin: 0;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

p + p {
  margin-top: 24px;
}

.company {
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.cities {
}

.diptic-wrapper {
  position: relative;
  display: inline-block;
}

.diptic-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  translate: 10px 10px;
  border: 4px solid var(--ink);
  background: repeating-linear-gradient(
    30deg,
    var(--ink) 0px,
    var(--ink) 6px,
    white 6px,
    white 12px
  );
  transition: translate 0.15s ease;
}

.diptic-tag {
  position: relative;
  z-index: 1;
  display: inline-block;
  background: var(--pink);
  border: 4px solid var(--ink);
  padding: 0.02em 0.35em;
  text-decoration: none;
  color: inherit;
  font-family: "Shrikhand", system-ui;
  transform: rotate(-1deg);
  transition: transform 0.15s ease;
  text-transform: uppercase;
}

.diptic-wrapper:hover .diptic-tag {
  transform: rotate(1deg) translate(3px, 3px);
}

.diptic-wrapper:hover::after {
  translate: 5px 5px;
}

.logo-wrapper {
  display: flex;
  justify-content: center;
  margin: 55px 0;
}

.logo-link {
  display: inline-block;
  text-decoration: none;
}

.logo-image {
  width: min(320px, 50vw);
  height: auto;
  transform: rotate(-1deg);
  transition: transform 0.15s ease;
}

.logo-link:hover .logo-image {
  transform: rotate(1deg) scale(1.03);
}

.bringing {
  margin-top: 20px;
}

.bringing-second {
}

.button-wrapper {
  position: relative;
  display: inline-block;
  margin-top: 60px;
}

.button-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  translate: 14px 14px;
  border: 6px solid var(--ink);
  background: repeating-linear-gradient(
    30deg,
    var(--ink) 0px,
    var(--ink) 8px,
    white 8px,
    white 16px
  );
  transition: translate 0.15s ease;
}

.contact-button {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-family: "Shrikhand", system-ui;
  font-size: clamp(36px, 6vw, 76px);
  color: inherit;
  text-decoration: none;
  padding: 0.02em 0.35em;
  background: var(--yellow);
  border: 6px solid var(--ink);
  transform: rotate(-2deg);
  transition: transform 0.15s ease;
}

.button-wrapper:hover .contact-button {
  transform: rotate(0deg) translate(4px, 4px);
}

.button-wrapper:hover::after {
  translate: 6px 6px;
}

footer {
  margin-top: 70px;
  font-size: clamp(22px, 2.5vw, 40px);
}

.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;
}

a:focus-visible {
  outline: 4px solid blue;
  outline-offset: 6px;
}

