.social-icons {
    position: fixed;
    top: 15px;
    right: calc(50% - 640px + 20px);
    display: flex;
    gap: 0.6rem;
}

.social-icon img {
    width: 35px;
    height: 35px;
    object-fit: contain; 
    transition: transform 0.3s;
}



.social-icon img:hover {
    transform: scale(1.1);
}