:root {
  --bg: #ffffff;
  --ink: #070707;
  --muted: #747474;
  --line: rgba(7, 7, 7, 0.14);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Arial Black,
    Arial,
    Helvetica,
    sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(18px, 3vw, 34px);
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1;
}

.ticker,
.links a,
.links span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 2px solid var(--ink);
  background: var(--bg);
  padding: 0 12px;
  box-shadow: 4px 4px 0 var(--ink);
}

.links {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.links span {
  color: var(--muted);
}

.links a:hover,
.ticker:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 84px 24px 48px;
}

.beegachad {
  position: relative;
  z-index: 2;
  width: min(62vw, 70vh, 760px);
  aspect-ratio: 1 / 1;
}

.beegachad img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: contrast(1.04);
}

.phrase {
  position: absolute;
  z-index: 3;
  max-width: min(26vw, 340px);
  margin: 0;
  color: var(--ink);
  font-size: clamp(17px, 2.5vw, 48px);
  line-height: 0.9;
  text-transform: uppercase;
  text-wrap: balance;
}

.phrase-top-left {
  top: 24%;
  left: 8%;
  transform: rotate(-8deg);
}

.phrase-top-right {
  top: 27%;
  right: 8%;
  text-align: right;
  transform: rotate(7deg);
}

.phrase-left {
  top: 54%;
  left: 5%;
  transform: rotate(-90deg);
  transform-origin: center;
}

.phrase-right {
  top: 54%;
  right: 4%;
  transform: rotate(90deg);
  transform-origin: center;
}

.phrase-bottom-left {
  bottom: 11%;
  left: 10%;
  transform: rotate(6deg);
}

.phrase-bottom-right {
  right: 8%;
  bottom: 10%;
  text-align: right;
  transform: rotate(-6deg);
}

@media (max-width: 760px) {
  body {
    overflow: auto;
  }

  .topbar {
    align-items: flex-start;
    padding: 16px;
    font-size: 12px;
  }

  .links {
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }

  .ticker,
  .links a,
  .links span {
    min-height: 30px;
    padding: 0 10px;
    box-shadow: 3px 3px 0 var(--ink);
  }

  .hero {
    min-height: 100svh;
    padding: 110px 14px 42px;
  }

  .beegachad {
    width: min(96vw, 520px);
  }

  .phrase {
    max-width: 44vw;
    font-size: clamp(14px, 5vw, 28px);
  }

  .phrase-top-left {
    top: 18%;
    left: 5%;
  }

  .phrase-top-right {
    top: 21%;
    right: 5%;
  }

  .phrase-left {
    top: auto;
    bottom: 26%;
    left: 5%;
    transform: rotate(-7deg);
  }

  .phrase-right {
    top: auto;
    right: 5%;
    bottom: 23%;
    transform: rotate(7deg);
  }

  .phrase-bottom-left {
    bottom: 10%;
    left: 7%;
  }

  .phrase-bottom-right {
    right: 7%;
    bottom: 7%;
  }
}
