body {
  margin: 0;
  padding: 20px;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  background-color: #000;
  color: #fff;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

img {
  max-width: 25vw;
  height: auto;
  animation: floatIn 1.2s ease-out forwards;
  animation-delay: 0.3s;
  opacity: 0;
  transition: transform 0.3s ease;
}

a:hover img,
a:focus-visible img {
  transform: translateY(-2px) scale(1.05);
}

@media (max-width: 768px) {
  img {
    max-width: 50vw;
  }
}

@media (max-width: 480px) {
  img {
    max-width: 80vw;
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}