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

body {
  font-family: "Outfit", "Outfit Placeholder", sans-serif;
  background: #faf3ec;
  min-height: 200vh;
  padding: 20px 120px;
}

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

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-black);
  color: var(--color-cream);
  padding: 8px 16px;
  z-index: 10000;
  text-decoration: none;
  font-weight: 600;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid var(--color-cream);
  outline-offset: 2px;
}

@media (max-width: 1024px) {
  body {
    padding: 20px 40px;
  }
}

@media (max-width: 700px) {
  body {
    padding: 20px 8px;
  }
}
