.social-icons {
    display: flex;
    justify-content: space-around; /* Равномерное распределение */
    margin-bottom: 20px;
    position: absolute;
    bottom: 0;
    width: 100%; /* Убедитесь, что иконки занимают всю ширину контейнера */
}

.social-icons a {
    margin: 0 10px;
}

.social-icons img {
    width: 70px;  /* Увеличенный размер (64px + 10%) */
    height: 70px; /* Увеличенный размер (64px + 10%) */
    transition: transform 0.3s;
}

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