body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
}

.contact-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.logo {
    max-width: 100%;
    height: auto;
    width: 400px; /* Adjust based on your logo size */
    padding-bottom: 40px;
}

.icon {
    display: flex;
    align-items: center;
    text-decoration: none; /* Remove underline from links */
    color: #fff; /* Set default link color to white */
    font-size: 18px; /* Adjust based on your text size */
    transition: transform 0.3s ease, color 0.3s ease;
}

.icon i {
    font-size: 20px; /* Adjust based on your icon size */
    margin-right: 10px; /* Space between icon and text */
}

.icon:hover {
    transform: scale(1.05);
    color: #babfc5; /* Change link color on hover */
}

/* Responsive design */
@media (max-width: 600px) {
    .logo {
        width: 350px; /* Adjust based on your logo size */
    }
    
    .icon {
        font-size: 16px; /* Adjust based on your text size */
    }

    .icon i {
        font-size: 20px; /* Adjust based on your icon size */
    }

    .contact-icons {
        flex-direction: column;
        gap: 20px;
    }
}
