/* Resetting default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #000; /* Black background */
    color: #fff; /* White text by default */
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Logo styling */
.logo {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-img {
    max-width: 100%;
    height: auto;
    width: 200px;
    /* Adjust based on actual image size */
}

/* Social Media Section */
.social-media {
    position: absolute;
    bottom: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.social-icon {
    font-size: 40px;
    color: #fff; /* White color for icons */
    margin: 0 15px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
    color: #0077ff; /* Highlight color on hover */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .logo-img {
        width: 150px;
    }

    .social-icon {
        font-size: 30px;
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        width: 120px;
    }

    .social-icon {
        font-size: 25px;
        margin: 0 5px;
    }
}

