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

html, body {
  width: 100%;
  height: 100%;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* SOCIALS */
.socials {
  position: fixed;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 28px;
  z-index: 10;
}

.socials img {
  width: 28px;
  height: 28px;
  image-rendering: pixelated;
  opacity: 0.85;
  filter:
    drop-shadow(0 0 4px rgba(0, 255, 102, 0.6))
    drop-shadow(0 0 10px rgba(0, 255, 102, 0.35));
  transition:
    transform 0.2s steps(2),
    opacity 0.2s,
    filter 0.2s;
  animation: flicker 2.8s infinite;
}

.socials img:hover {
  opacity: 1;
  transform: scale(1.25);
  filter:
    drop-shadow(0 0 6px rgba(0, 255, 102, 0.9))
    drop-shadow(0 0 18px rgba(0, 255, 102, 0.6))
    drop-shadow(0 0 28px rgba(0, 255, 102, 0.4));
}

@keyframes flicker {
  0% { opacity: 0.8; }
  50% { opacity: 1; }
  100% { opacity: 0.9; }
}
