@import url('https://fonts.googleapis.com/css2?family=Oswald&display=swap');

body {
  font-family: Oswald, Arial, sans-serif;
  margin: 0;
  background-image: url('/images/background.png');
  background-size: cover;
  overflow-x: hidden;
  user-select: none;
  overflow-y: hidden;
}

.fuzzy-overlay {
	position: absolute;
	inset: -200%;
	background-image: url("/images/noise.png");
	opacity: 10%;
	z-index: 0;
	pointer-events: none;

	animation: shift 0.2s linear infinite both;
}

@keyframes shift {
	0% {
		transform: translateX(10%) translateY(10%);
	}

	100% {
		transform: translateX(-10%) translateY(-10%);
	}
}

.header-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 250px;
  background: linear-gradient(to bottom, #000000, transparent);
}

.main-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 20px;
  box-sizing: border-box;
}

.banner-container {
  opacity: 0;
  transform: scale(0.8);
  animation: appearZoom 1s ease-out forwards;
  pointer-events: none;
}

@keyframes appearZoom {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.banner {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: block;
}

.social-icons {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.icon {
  opacity: 0;
  transform: scale(0.8);
  animation: appearZoom 1s ease-out forwards;
}

.social-icons img {
  height: 44px;
  filter: brightness(0) invert(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icons img:hover {
  opacity: 0.7;
  transform: scale(1.2);
}

.social-icons .icon:nth-child(1) { animation-delay: 1.0s; }
.social-icons .icon:nth-child(2) { animation-delay: 1.2s; }
.social-icons .icon:nth-child(3) { animation-delay: 1.4s; }
.social-icons .icon:nth-child(4) { animation-delay: 1.6s; }
.social-icons .icon:nth-child(5) { animation-delay: 1.8s; }
.social-icons .icon:nth-child(6) { animation-delay: 2.0s; }
.social-icons .icon:nth-child(7) { animation-delay: 2.2s; }
/* .social-icons .icon:nth-child(7) { animation-delay: 2.2s; } */
/* .social-icons .icon:nth-child(8) { animation-delay: 2.4s; } */

.footer {
  position: fixed;
  display: flex;
  width: 100%;
  height: 250px;
  bottom: 0;
  padding: 10px 0;
  gap: 20px;
  justify-content: center;
  align-items: center;
  z-index: 999;
  background: linear-gradient(to top, #000000, transparent);
  margin-top: auto;
}

.footer-container {
  text-align: center;
  padding: 30px;
  color: gray;
}