
.contact {
    max-width: 550px;
    width: 100%;
    border-radius: 10px;
    background-color: #e1e1e1;
    padding: 10px;
    margin: 15px auto;
}
.contact .title {
    font-family: arial;
    font-size: 14pt;
    color: white;
    border-radius: 10px;
    background-color: #4e0489;
    padding: 10px;
    text-align: center;
}
.contact table {
    font-family: arial;
    font-size: 13pt;
    margin: 10px auto;
    border-spacing: 5px;
}
.contact table tr td:first-of-type {
    text-align: right;
    padding-right: 15px;
}
.contact table td {
    word-break: break-word;
    vertical-align: top;
}
@media (max-width: 768px) {
    .contact .title {
        font-size: 12pt;
        padding: 7px 5px;
    }
    .contact table {
        font-size: 11pt;
    }
    .contact table tr td:first-of-type {
        padding-right: 5px;
    }
}