.contact-page {
    width: 100vw;
    height: 80vh;
    display: flex;
}

.contact-details {
    width: 75vw;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    background-color: rgba(199, 196, 196, .75);
    max-width: 750px;
}

.contact-header {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1.75rem;
    font-weight: bolder;
    text-align: center;
    margin-bottom: 20px;
    padding: 5px;
    background: linear-gradient(to bottom, rgba(128, 62, 1, .5), rgba(196, 168, 14, .5));
}

.contact-detail {
    display: flex;
    flex-direction: column;
    margin: 10px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}


.form-of-contact {
    font-size: 1.25rem;
    font-weight: bolder;
    margin-bottom: 5px;
}

.form-of-contact-info {
    display: flex;
    align-items: center;
    line-height: 30px;
}

.detail {
    margin-left: 10px;
}
            

.address {
    display: flex;
    flex-direction: column;
    margin: 10px 0;
    line-height: 22px;
}

.phone-icon {
    height: 26px;
}
.fax-icon {
    height: 23px;
}
.mail-icon {
    height: 26px;
}

@media only screen and (max-width: 600px) {
    .contact-details {
        width: 90%;
        margin: 0 auto;
    }

    .address {
        text-decoration: none;
    }

    .address-info {
        text-decoration: none;
    }

    .detail {
        text-decoration: none;
        color: black;
        margin-left: 5px;
        font-size: 1rem;
    }
}