/* 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 {
  padding-top: 20px;
  background-color: lightblue;
}

section,
div {
  padding-bottom: 5px;
}

body {
  font-size: 16px;
}

div > p {
  font-size: 20px;
}

section:nth-of-type(2) > p:nth-of-type(2),
p:nth-of-type(3) {
  text-indent: 40px;
}

section:nth-of-type(4) > ul:nth-of-type(1) > li:nth-of-type(2) {
  text-decoration-line: underline;
}

section:nth-of-type(4) > ul:nth-of-type(1) > li:nth-of-type(2):hover {
  text-decoration-line: line-through;
}

section:nth-of-type(3):hover + section:nth-of-type(4) {
  background-color: antiquewhite;
}
