
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    line-height: 1.5rem;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: #262421;
}
/* all paragraphs should have padding */
p{
    padding: 5px;
}
/* all list items should have padding */
li{
    padding: 5px;
}

h2{
    text-align: center;
    padding: 10px;
    color: #3d608d;
}

header{
    background-color: #f4f5fa;
    padding:10px;
}

.header_container{
    display: flex;
    justify-content: space-between;
    align-items: center;  
}
.header_container a{
    text-decoration: none;
    color: grey;
    padding-right: 10px;
}

.heading1{
    border-style: dashed;
    display: block;
}
/* -------------- section 0-----------------*/
 .section_0{
    display: flex;
    justify-content: space-between;
    padding: 10px;
    padding-left: 20%;
    padding-right: 20%;
    background-color: rgb(186, 192, 177);

    border-top-style:solid;
    border-top-width: 1px ;
    border-top-color: grey;
} 
/*set span color*/
.span{
    color:green;
}
/* -------------- section 1-----------------*/
.section_1{
    padding: 100px;
    background-color: #f4f0ea;
    text-align: center;
}
/* -------------- section 2-----------------*/
/* details for class .image inside class .section_2 */
.section_2 .image{
    width: 410px;
    height: 208px;
    float:left ;/*put the image on the left side and text on the right next to image*/
    margin-right: 10px;
}
/* .section_2{
    align-items: center;
    text-align: center;
} */
.section_2_div{
    display:flow-root; /*use this to have only one text next to image. What is contained inside the DIV */
    padding-left: 20%;
    padding-right: 20%;
    text-align: center;
}
.p_center{
    text-align: center;
    padding: 30px;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
/* -------------- section 3-----------------*/
.section_3{
    padding-left: 20%;
    padding-right: 20%;
}
/* -------------- section 4-----------------*/
.section_4{
    padding-left: 20%;
    padding-right: 20%;
}
.div_list{
    display: block;
    justify-content: center;
    background-color: #f5f4f2;
    margin: 10px;
}

ul{
    padding-left: 40px;
    list-style-image: url("/Images/checkbox_5px.png");
}
/* -------------- section 5-----------------*/
.image_5{
    display: flex;
    justify-content: center;
}
.section_5{
    padding-left: 20%;
    padding-right: 20%;
}

/* -------------- FOOTER -----------------*/
footer{
    text-align: center;
}
