
.contact-section {
    display: block;
    align-items: center;
    padding: 70px 0;
    background-color: lemonchiffon;
    height: 680px;
    margin-top: 50px;
    font-size: 150%;
}

.contact-row {
    display: flex;
    flex-direction: wrap;
    justify-content: space-around;
}

.contact-col {
    display: inline-block;
    
}

.contact-col h4 {
    text-transform: uppercase;
    text-align: center;
}

.contact-col ul li {
    margin-left: -30px;
    text-transform: capitalize;
}

.contact-col ul li a {
    transition: all 0.5s ease;
}

.contact-col ul li a:hover {
    color: white;
    background-color: blue;
    
}

