@font-face {
  font-family: 'Departure Mono';
  src: url('fonts/DepartureMono-Regular.woff2') format('woff2');
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

* {
  font-family: 'Departure Mono', monospace;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: #1e1e1e;
  color: #60ff42;
  font-size: 16px;
  line-height: 1.65;
}

h1, h2, h3, h4, h5, p {
  margin-top: 0;
}

h1, h2, h3 {
  line-height: 1.3;
}

a {
  color: #ffcc99;
  text-underline-offset: 0.18em;
}

a:hover {
  color: #fff;
}

button,
input,
textarea {
  color: inherit;
  background: transparent;
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid #ffcc99;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10000;
  padding: 8px;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.header {
  display: flex;
}

.title {
  text-align: center;
  font-size: 44px;
  line-height: 1.25;
}

.gif {
  display: block;
  margin-left: auto;
  margin-right: auto;
  border: 5px solid white;
}

.nav {
  height: 32px;
  width: 80px;
  margin-bottom: 8px;
}

.links {
  display: flex;
  flex: 1;
  gap: 15px;
  margin-top: 20px;
  align-items: center;
  justify-content: center;
}

.links a {
  text-decoration: none;
  color: rgb(255, 204, 153);
  font-size: 30px;
  display: inline-flex;
  min-width: 80px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.links a span { font-size: 12px; }

.links a:focus-visible {
  outline: 2px solid #ffcc99;
  outline-offset: 5px;
}

.content {
  width: min(100% - 48px, 1040px);
  margin: 0 auto;
  padding: 48px 0 56px;
}

.innerContainer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.innerContainer img {
  cursor: pointer;
}

.intro {
  max-width: 760px;
  margin: 48px auto 0;
  line-height: 1.9;
}

.hero {
  margin-top: 40px;
  border-left: 3px solid #ffcc99;
  padding-left: 22px;
}

.hero h1 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 5vw, 3rem);
}

.eyebrow {
  margin-bottom: 12px;
  color: #ffcc99;
  font-size: 0.85em;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero p {
  margin-bottom: 0;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
}

footer {
  text-align: center;
  font-size: 0.9em;
  font-weight: bold;
}

footer h5 {
  color: white;
}

footer a {
  color: rgb(255, 204, 153);
}

footer span,
footer time {
  color: #ffcc99;
}

.stickersContainer {
  display: flex;
  max-height: 150px;
  gap: 10px;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}

.content {
  display: block;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #000;
}

::-webkit-scrollbar-thumb {
  background-color: #60ff42;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #33cc33;
}

@media screen and (max-width: 1059px) {
  .stickersContainer {
    display: flex;
    flex-direction: row;
  }
}

@media screen and (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .content {
    width: min(100% - 32px, 680px);
    padding-top: 24px;
  }

  .middle {
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    max-width: 150px;
    align-items: center;
  }

  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .gif {
    width: min(300px, 100%);
  }

  .stickersContainer {
    display: flex;
    max-height: none;
    flex-direction: row;
  }
}
