.Contact {
    background-color: white;
    min-height: 300px;
    padding-top: 20px;

}
.divTitle h2{
    text-align: Center;
    font-size: 2.25rem;
    margin: 5px 0;
    line-height: 59px;
    color: black;
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}
.divContactContent p{
    text-align: Center;
    font-size: 1.25rem;
    color: black;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}
.divContactIcon{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    max-width: 100%;
    text-align: center;
    height: auto;
}
.divContactIcon span{
    text-align: center;
    margin: 10px;
    position: relative;
}
.divContactIcon a img {
    max-width: 100px;
    height: 80px;
    display: block;
    transition: transform 0.3s, opacity 0.3s;
    margin: 0 10px;
    margin-top: 10px;}

.divContactIcon a img:hover {
    transform: translateY(-5px);
    opacity: 0.7;
}
.contact-button {
    background-color: rgb(5, 5, 20);
    color:white;
    border: none;
    border-radius: 50%;
    font-weight: bolder;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    margin: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-button:hover {
    color:darkcyan;
    background-color: gray;
}

@media screen and (max-width: 767px) {
    .divContactIcon a img {
        height: 60px;
    }
    .contact-button {
        height: 30px;
        width: 30px;
    }
}