/* ADD YOUR TARGET SELECTORS HERE */
/* ----------------------------------------------------- */



/* SOME CSS PROPERTIES YOU COULD USE

{
    margin: 20px;
    margin: 20%;

    margin-left: ;
    margin-right: ;

    padding-left: 20px;
    padding-right: 20%;
    padding: 0 50px;
    padding: 10px 30px 50px 70px;

    border-width: ;
    border-style: ;
    border-color: ;
    border: 

    font-size: ;
    line-height: ;
    letter-spacing: ;

    text-transform: lowercase;
    text-indent 20px;
    columns: 2;
    column-gap:;

    text-decoration:;
    text-decoration-line: ;
    
    list-style: ;
}

*/


section {
    margin-bottom:20px;
}

section:nth-of-type(2) {
    margin-top:20px; 
}

div:nth-of-type(3) {
    padding-top: 20px; 
    padding-bottom:5px;
    background-color:blanchedalmond;
}

section, div:nth-of-type(3){
    padding-bottom:5px;
}


body {
    font-size:16px;
}

section:nth-of-type(2) p:not(:first-child) {
   text-indent:40px;
}

div:nth-of-type(3) {
font-size:20px;
}

section:nth-of-type(2) p:not(:first-child) {
    text-indent:40px;
}

section:nth-of-type(4) ul:nth-of-type(1) li:nth-of-type(2) {
    text-decoration:underline; 
 
}

section:nth-of-type(4) ul:nth-of-type(1) li:nth-of-type(2):hover {
    text-decoration:line-through ;
}

section:nth-of-type(3):hover + section:nth-of-type(4){
    background-color:burlywood;
}