/* Main container */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.7);
    filter: grayscale(100%);
  }
  80% {
    opacity: 1;
    transform: scale(1);
	filter: grayscale(100%);
  }	
  100% {
	opacity: 1;
	transform: scale(0.9);
    filter: grayscale(0%);
	border-radius: 50%;
  }
}

/* Social media container */
@keyframes iconAnimation {
  0% {
    color: #FFF;
	transform: scale(0.1);
  }
  25% {
    color: #999999;
	transform: scale(0.5);
  }
  50% {
    color: #999999;
	transform: scale(0.8);
  }
  75% {
    color: #FFFF00;
	transform: scale(1.5);
  }
  100% {
    color: #FFF;
	transform: scale(0);
  }
}

/* MOB DEVICES */
@media (max-width: 768px) {
  .container {
    padding: 10px;
  }

  .social-links {
    margin-top: 10px;
    flex-wrap: wrap;
  }

  .social-links a {
    margin-right: 10px;
    margin-bottom: 10px;
  }

  .image-container img {
    max-width: 100%;
    height: auto;
  }
}

html,
body {
  background-color: #000000;
  height: 100%;
  margin: 0;
  padding: 0;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 90vh;
}

.social-links {
  position: fixed; /* Position the social-links block as fixed */
  bottom: 3vh;
  display: flex;
  justify-content: center;
}

.social-links a {
  font-size: 25px;
  margin-right: 12px;
  color: #fff;
  animation: iconAnimation 1.5s ease-in-out;
}

.social-links a:last-child {
  margin-right: 0;
}

.social-links a:hover {
  color: #007bff;
}

.social-links a {
  color: #fff;
}

.image-container {
  flex: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container img {
  max-height: 87vh;
  width: auto;
  opacity: 0;
  animation: fadeIn 4s ease-in-out forwards;
  transform: scale(0.8);
  filter: grayscale(100%);
}

.social-links a:nth-child(1) {
  animation-delay: 0s;
}

.social-links a:nth-child(2) {
  animation-delay: 0.2s;
}

.social-links a:nth-child(3) {
  animation-delay: 0.5s;
}

.social-links a:nth-child(4) {
  animation-delay: 0.7s;
}

.social-links a:nth-child(5) {
  animation-delay: 0.9s;
}

#smokeOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 1);
  opacity: 0;
  animation: smokeEffect 10s ease-in-out infinite;
  animation-delay: 6s;
}

@keyframes smokeEffect {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.8;
  }
}
  100% {
    opacity: 1;
  }
}