@import './colors.css';

h1 {
    font-size: 30pt;
}

p > b {
    font-weight: bold;
    color: black;
}

.landing-image-container {
    background-image: url(../assets/images/other-pages/contact-header-image.jpg);
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position-y: center !important;
    background-position-x: center !important;
}

.about-content > .about-text-container > p > a {
    color: #999999;
}

.about-content {
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
}

    .about-content > .font-dark-blue {
        margin: 2em 0;
    }

.about-text-container > p > a {
    color: #999999 !important;
    text-decoration: underline;
}

.about-image-container > img {
    width: 100%;
}

.about-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 3em 0;
}


/* ------------ Responsive Breakpoints ------------ */

@media only screen and (min-width: 1024px) {
    h1 {
        font-size: 40pt;
    }

    .about-content {
    }

        .about-content > * {
            max-width: 37em;
        }

    .landing-image-container {
        background-image: url(../assets/images/other-pages/contact-header-image.jpg);
    }

    .about-text-container {
        margin-right: 1em;
    }

    .about-image-container > img {
        height: 35em;
        width: auto;
        margin-left: 1em;
    }
}
