body {
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg, #2f0244, #790975, #0f0d28);
    background-size: 300% 300%;
    animation: gradientAnimation 15s ease infinite;
    font-family: Arial, sans-serif;
}

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

.container {
    text-align: center;
}

.center-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    text-decoration: none;
  
}

.social-icons img {
    width: 40px;
    height: 40px;
}
.logo img{
  max-width: 40%;
}
.fab {
   color: #fff;

}
@media only screen and (max-width: 1024px) {
.logo img{
  max-width: 60%;
}
}

