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

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

body {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f1d8;
  padding: 1.5rem;
}

.social-links {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-links__item {
  display: block;
  line-height: 0;
  border-radius: 0.25rem;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.social-links__item:hover,
.social-links__item:focus-visible {
  transform: scale(1.08);
  opacity: 0.85;
}

.social-links__item:focus-visible {
  outline: 2px solid #5c4a32;
  outline-offset: 3px;
}

.social-links__item img {
  display: block;
  width: clamp(2rem, 7vw, 2.75rem);
  height: auto;
}

.site-header {
  width: 100%;
  display: flex;
  justify-content: center;
}

.logo {
  margin: 0;
  line-height: 0;
}

.logo img {
  display: block;
  width: min(88vw, 72vmin, 28rem);
  height: auto;
  aspect-ratio: 1 / 1;
}

@media (min-width: 768px) {
  body {
    padding: 2.5rem;
  }

  .social-links {
    top: 1.5rem;
    right: 1.5rem;
    gap: 1rem;
  }

  .social-links__item img {
    width: clamp(2.25rem, 4vw, 2.75rem);
  }

  .logo img {
    width: min(70vw, 36rem);
  }
}

@media (min-width: 1024px) {
  .logo img {
    width: min(50vw, 32rem);
  }
}
