/*style main content of page*/
main {
    margin: 0 auto;
    max-width: 1200px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.7);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-family: 'Open Sans', sans-serif;
    color: black;
}

/*sub styling over main*/
article {
    flex: 1;
    padding: 30px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    margin: 20px;
}

/*main div of content*/
.textContainer {
    margin: 20px 0;
}

/*set style to h3 and h4*/
h3,
h4 {
    font-weight: bold;
}

/*line height of each line on paragraphs*/
p.paragraph {
    line-height: 1.5;
}

/*styling of first letter of each paragraph*/
p.paragraph:first-letter {
    font-size: 2em;
    font-weight: bold;
    color: #0077c9;
    float: left;
    margin-right: 8px;
}

/*styling of text*/
p.paragraph {
    font-size: 1.2em;
}

/*main div of 3 content images, display them horizontally aligned with each other*/
.content {
    text-align: center;
    justify-content: center;
    display: flex;
}

/*subdiv for each content image*/
.containerContent {
    margin-bottom: 40px;
    border-radius: 0.3em;
    padding: 10px;
    background-color: rgba(248, 247, 216, 0.35);
    margin-left: auto;
    margin-right: auto;
    width: 30%;
}

/*class of content images*/
.clipContent {
    width: 100%;
    border-radius: 0.3em;
}