/*Images inside image container*/
.imageContainer > img {
    width: 315px;
}

hr {
    border-color: #03582D;
    border-style: solid;
    margin-top: 20px;
}

h3 {
    text-align: left;
}

.textContainer a,
.textContainer a:visited {
    color: #03582d;
    text-decoration: underline;
    text-align: right;
    display: block;
    font-size: 1.2em;
}

/*What to do when screen width has been reduced below a certain width (for mobile or small screens)*/
@media screen and (max-width: 900px) {
    .imageContainer {
        align-items: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
    }
}