/*style body*/
body {
    background-color: #f2f2f2;
}

/*set padding to text container*/
.textContainer {
    padding: 1em;
}

/*style text*/
.paragraph {
    text-align: justify;
    color: #333;
    padding: 1em;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 0px 10px #ccc;
    margin-bottom: 1em;
    margin-left: auto;
    margin-right: auto;
    width: 59%;
    border: black solid 2px;
}

/*display of imagecontainer*/
.imgContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1em;
}

/*styling of each image*/
.imgArticle {
    width: 30%;
    border-radius: 0.5em;
    border: black solid 2px;
    margin-right: 1em;
}

/*styling of image legend*/
.imgDescription {
    font-size: 0.8em;
    color: white;
    width: 30%;
    text-align: center;
}