*{
    margin: 0;
    /*margin: 1.5rem;*/ /*relative value based on rem*/
    /*margin: 1.5em;*//*relative value based on em*/
    /*margin: 10px;*//*absolute value based on px*/
}


body{
    background-color: tan;
    font-family: Arial, Helvetica, sans-serif;
}
/*#backColour{*/
/*    background-color: pink;*/
/*}*/
#bcolour{
    background-color: yellow;
}
.ccolour{
    color: blue;
}
ol{
    list-style-type: decimal-leading-zero;
}
.loremp{
    font-family: "Times New Roman", Times, serif;
}
/*h3{*/
/*    font-size: 150%;*/
/*    color: red;*/
/*}*/
/*#lorem{*/
/*    font-size: 150%;*/
/*    color: red;*/
/*}*/
/*section h3{*/
/*    font-size: 150%;*/
/*    color: red;*/
/*}*/
section>h3{
    font-size: 150%;
    color: red;
}
/*[href]{*/
/*    background-color: lightblue;*/
/*}*/
[href="https://www.w3schools.com"]{
    background-color: lightblue;
}
[href^=".."]{
    border: dotted 4px green;
}
[href$="wk02.html"]{
    background-color: white;
}
#lorem::first-letter{
    font-size: 200%;
    color: darkorchid;
}
section>p:hover{
    background-color: yellow;
}
/*section p{*/
/*    background-color: pink;*/
/*}*/
/*section>p{*/
/*    background-color: pink;*/
/*}*/
section>h3+p{
    background-color: pink;
}
li>ol>li:first-child{
    color: red;
}

li>ol>li:last-child{
    color: green;
}
li>ol>li:nth-child(2){
    color: orange;
}
li>ol>li:nth-child(3){
    color: yellow;
}
/********************************************************/
body{
    background-image: url("../img/ahmed-abbas-dPrVq_7xbm8-unsplash.jpg");
}
#wrapper{
    background-color: rgba(59, 51, 39, 0.85);
    color: tan;
}
header, footer, main{
    /*border: dotted pink 4px;*/
    margin: 0 1.5em;
    padding: 2em;
}
h1{
    font-size: 450%;
    text-shadow: 4px 4px 8px black;
}
h2,h3, h4, h5, h6{
    color: purple;
}
.buttons{
    text-decoration: none;
    color: tan;
    border: 4px solid purple;
    padding: 10px;
    margin: .5em;
    border-radius: 30px;
    background-image: linear-gradient(to bottom, rebeccapurple, violet);
    box-shadow: 4px 4px 4px black;
}
nav{
    text-align: center;
    position: sticky;
    top:18px;
    z-index: 1;
}
header p{
    font-size: 10px;
}
header{
    text-align: center;
    height: 100vh;
    position: relative;
}
header>img{
    position: absolute;
    bottom: 100px;
    right: 10px;
}
header>section{
    border: 6px solid saddlebrown;
    position: relative;
    width: fit-content;
    top: 30%;
    left: 10%;
    background-image: linear-gradient(to bottom,tan, saddlebrown);
    padding: 2em;
    border-radius: 40px 0;
    box-shadow: 8px 8px 10px black;
}

footer,#listSection,#linkSection,#loremSection,#imageSection{
    height: 100vh;
    padding-top: 2em;
}
#infoSection{
    padding-top: 3.5em;
    height: 100vh;
}
#linkSection p, #linkSection h3,#linkSection a{
    margin: 1em;
}