.section-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30vh;
    width: 100vw;
    background: black;
}

.contact-address {
    display: flex;
    flex-direction: column;
    height: 80%;
    width: auto;
    color: white;
    pointer-events: none;
    align-items: center;
    justify-content: center;
}

.contact-address h3 {
    font-size: 1.25rem;
}

.contact-address p {
    font-size: 1rem;
    padding: 2px 0px;
}

.contact-email {
    color: gray;
    padding: 5px 0px;

}

@media screen and (max-width:2000px) {

    .contact-address h3 {
        font-size: 1rem;
    }

    .contact-address p {
        font-size: 0.8rem;
        padding: 1px 0px;
    }
}

@media screen and (max-width:1000px) {

    .contact-address h3 {
        font-size: 0.8rem;
    }

    .contact-address p {
        font-size: 0.6rem;
        padding: 1px 0px;
    }
}