* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  height: 100vh;
  background: url('background.jpg') no-repeat center center/cover;
}

.overlay {
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.25); 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.coming-soon {
  color: #fff;
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: 5px;
  animation: fadeDown 2s ease forwards;
  opacity: 0;
}

@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.social-links {
  margin-top: 40px;
  display: flex;
  gap: 25px;
}

.social-links a {
  color: #fff;
  font-size: 1.8rem; 
  transition: all 0.4s ease;
}

.social-links a:hover {
  color: #ffcc00; 
  transform: translateY(-5px);
}
