body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.background-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.background-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: fadeSlide 16s infinite;
}
.background-slide img:nth-child(1) {
  animation-delay: 0s;
}
.background-slide img:nth-child(2) {
  animation-delay: 4s;
}
.background-slide img:nth-child(3) {
  animation-delay: 8s;
}
.background-slide img:nth-child(4) {
  animation-delay: 12s;
}
@keyframes fadeSlide {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home-link {
  display: inline-block;
  width: 100%;
}
.logo {
  width: 250px;
  height: auto;
  margin-bottom: 20px;
}
.home-link:hover .logo {
  animation: bounceLogo 0.6s;
}
@keyframes bounceLogo {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(7px);
  }
  100% {
    transform: translateY(0);
  }
}
h1 {
  font-size: 2em;
  background: linear-gradient(90deg, #ff4e50, #f9d423);
  -webkit-background-clip: text;
  color: transparent;
}
p {
  margin: 0;
  margin-bottom: 20px;
  font-size: 1em;
}
p.follow-us {
  margin-bottom: 0;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: transform 0.3s, background 0.3s;
}
.social-links a img {
  width: 45px;
  height: 45px;
}
.social-links a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.2);
}
@media (min-width: 768px) {
  .content {
    align-items: center;
    height: 100vh;
    justify-content: center;
    gap: 20px;
  }
  .logo {
    width: 100%;
    margin-bottom: 30px;
  }
  .home-link {
    display: inline-block;
    width: 30vw;
  }
  h1 {
    font-size: 2.4em;
  }
  p {
    font-size: 1.2em;
  }
  .social-links {
    gap: 30px;
  }
  .social-links a {
    width: 140px;
    height: 140px;
  }
  .social-links a img {
    width: 90px;
    height: 90px;
  }
}
