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

body {
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
    position: relative;
    overflow: hidden;
}

body::before {
    content: "";
    background-image: url('https://i.ibb.co/tsxTGQK/324663974-561793272482691-6673394071556281314-n.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.social-icons {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap; /* Prevent wrapping */
    width: 90%; /* Ensure the container scales */
    max-width: 1000px; /* Optional: Limit maximum width */
}

.icon {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* Prevent shrinking */
}

.social-icon {
    width: 50px;
    height: 50px;
    max-width: 100%;
    height: auto; /* Maintain aspect ratio */
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .social-icons {
        gap: 15px;
    }

    .social-icon {
        width: 40px; /* Adjust size for medium screens */
    }
}

@media screen and (max-width: 480px) {
    .social-icons {
        gap: 10px;
    }

    .social-icon {
        width: 30px; /* Adjust size for small screens */
    }
}

