body {
    margin: 0;
    font-family: 'Segoe UI';  
}

.contact-us-content-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    height: calc(100% - 11.5rem);
    /* background-color: white; */
    background-color: #607D8B;
    /* background-color: #BDBDBD; */
}

.contact-us-header-container {
    text-align: center;
    height: fit-content;
    margin-top: 3rem;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-us-header-container h1 {
    border-bottom: 1px solid white;
    padding-bottom: 1rem;
}

.contact-us-modal {
    z-index: 1;
    background-color: #CFD8DC;
    padding: 1rem 3rem 1rem 3rem;
    margin: 2rem 1rem 3rem 1rem;
    border-radius: 10px;
    box-shadow: 1px 1px 5px #212121;
    justify-content: center;
    align-items: center;

}

.contact-us-group {
    display: flex;
    justify-content: center;
}
.contact-us-group :last-child {
    margin-left: .3rem;
    color: #009688;
}

.contact-us-modal h1 {
    font-size: large;
    font-weight: 500;
    text-align: center;
}

.contact-us-header-container {
    margin: 1rem;
}

.contact-us-header-container p a{
    text-decoration: none;
    color: #03cab6;
}

.contact-us-header-container p a:hover {
    color: #009688;
}

.contact-us-modal h1 a {
    text-decoration: none;
    color: #009688;
}

.contact-us-modal h1 a:hover {
    color: #03cab6;
}

.premium-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-align: center;
}

.premium-text h1 {
    border-bottom: 1px solid white;
    padding-bottom: 1rem;
}

.premium-text p {
    margin: 1rem;
}

/* responsive design */

@media only screen and (max-width: 376px) {
    .contact-us-modal {
        text-align: center;
    } 
}

@media only screen and (max-width: 321px) {
    .contact-us-modal {
        padding: 1rem;
        text-align: center;
    }
}

@media only screen and (max-height: 592px) {

    .contact-us-content-container {
        height: max-content;
    }
}

/* end of responsive design */