*{
    margin:1.5em; /*default parent font size 16px*1.5 =24px*/
                    /*h1 is 200% font size 16*2=32*/
                    /*32*1.5=48px*/
    margin:10px;
}
body{
    background-color: tan;
    font-family: Arial, Helvetica, sans-serif;
}
.loremp{
    font-family: "Times New Roman", Times, serif;
}
#lorem{
    font-size: 150%;
    color: #0000ff;
}
section p {
    background-color: yellow;
}
section h2+p{
    background-color: pink;
}
/*h3+a {*/
/*    border: green solid 2px;*/
/*}*/
/*h3+h4{*/
/*    border: green solid 2px;*/
/*}*/
h3+a, h3+h4 {
    border: green solid 2px;
}
[href^=".."]{
    border: dashed 2px red;
}
[href$="template.html"]:hover,
[href$="template.html"]:focus{
    border: dashed 2px red;
    background-color: white;
}
ul>li:first-child{
    color: red;
}
ul>li:last-child{
    color: blue;
}
ul>li:nth-child(2){
    color: orange;
}
ul>li:nth-child(3){
    color: yellow;
}
#lorem::first-letter{
    font-size: 150%;
    color: red;
}
header{
    font-size: 230%;
    text-shadow: -4px -3px 4px purple;
}
#wrapper{
    background-color: tan;
    margin: 5em;
    border: solid 4px purple;
}