


.contact-content{
    /* background: lightcoral; */
    text-align: center;
    padding: 30px;
}

.contact-content ul {
    display: flex;
    margin: 20px 0;
    justify-content: center;
    align-items: center;
    list-style: none;
    
}
.contact-content ul li a{
    color: #000;
}


.contact-content ul li{
    font-size: 2em;
    cursor: pointer;
    padding: 10px;
    transform: scale(1);
    transition: transform 0.2s ease-in-out;
}

.contact-content ul li:hover{
    transform: scale(1.1);
}