.contactSection {
    background-image: linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.68)), url('./images/contactBg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 80px;
    padding-bottom: 80px;
    margin-top: 100px;
}

.contactDiv {
    margin-left: 30px;
    padding: 30px 30px;
    width: 60%;
    background-color: #f5f4f2;
    border-radius: 20px;
}

.whatsAppIcon {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 1000;
    cursor: pointer;
    transition: transform .3s ease-in-out;
}

.whatsAppIcon a img {
    width: 50px;
    transition: transform .3s ease-in-out;
}

.whatsAppIcon:hover img {
    transform: scale(1.2);
}

@media(max-width:768px) {
    .contactDiv {
        margin-left: 5px;
        width: 98%;
    }
}