
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Background Color Transition */
body {
    background-color: hsl(180, 100%, 50%); /* Start with cyan */
    animation: colorShift 60s linear infinite;
}

@keyframes colorShift {
    0% {
        background-color: hsl(180, 100%, 50%); /* Cyan */
    }
    25% {
        background-color: hsl(270, 100%, 50%); /* Purple */
    }
    50% {
        background-color: hsl(360, 100%, 50%); /* Red */
    }
    75% {
        background-color: hsl(90, 100%, 50%); /* Greenish */
    }
    100% {
        background-color: hsl(180, 100%, 50%); /* Back to Cyan */
 }
}

.logo {
    max-width: 100%; /* Adjust based on your logo size */
    height: 250px;
    transition: transform 0.2s ease;
}

.logo-container img:hover{
    transform: scale(1.02);
}

.logo-container {
    text-align: center;
    margin-bottom: 40px; /* Space between logo and social links */
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 30px; /* Space between icons */
}

.social-links img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.social-links img:hover {
    transform: scale(1.2);
}