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

body, html {
  height: 100%;
  font-family: 'Arial', sans-serif;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
}

.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('path-to-your-image.jpg') center/cover no-repeat;
  background-size: cover;
  filter: blur(5px);
  animation: backgroundAnimation 15s ease infinite;
  z-index: 0;
}

@keyframes backgroundAnimation {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
  100% { transform: rotate(360deg); }
}

.container {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
}

.brand-name {
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #04007a, #120dbc, #443dff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: gradientAnimation 3s ease infinite;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.coming-soon {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 15px;
}

.description {
  font-size: 18px;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

.social-icons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.social-icon {
  margin: 0 15px;
  font-size: 30px;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  opacity: 0; 
  transform: translateY(30px); /* initially move down */
}

.social-icon:hover {
  color: #120dbc;
}

.social-icon i {
  transition: transform 0.3s ease;
}

.social-icon:hover i {
  transform: scale(1.2);
}


