*{
    margin: 0;
    /*margin: 10px;*/
    /*margin: 1.5em;*/
    /*margin: 1.5rem;*/

}

#idatt{
    background-color: yellow;
}
#bcolour{
    background-color: lightblue;
}
.ccolour{
    background-color: lightgreen;
}
.secondclass{
    color: blue;
}
ul{
    list-style-type: square;
}
ol{
    list-style-type: upper-roman;
}
/*#backColour{*/
/*    background-color: tan;*/
/*}*/
body{
    background-color: tan;
    font-family: Arial, Helvetica, sans-serif;
}
.loremp{
    font-family: "Times New Roman", Times, serif;
}
/*#lorem{*/
/*    color: red;*/
/*}*/

/*h3{*/
/*    color: blue;*/
/*}*/
/*section h3{*/
/*    color: red;*/
/*}*/
/*section>h3{*/
/*    color: red;*/
/*}*/
h3.loremp{
    color: red;
}

#loremSection>h3+p+p, section>h3+p{
    background-color: yellow;
}
#loremSection>h3::first-letter{
    font-size: 200%;
    color: purple;
}
#loremSection p:hover{
    background-color: white;
}
/*[href]{*/
/*    background-color: lightblue;*/
/*}*/
[href="https://www.w3schools.com/"]{
    background-color: lightblue;
}
[href^=".."]{
    border: 4px dotted red;
}
[href$="practicewk02.html"]{
    background-color: white;
}
li>ul>li:first-child{
    color: red;
}
li>ul>li:last-child{
    color: green;
}
li>ul>li:nth-child(2){
    color: orange;
}
li>ul>li:nth-child(3){
    color: yellow;
}
/***************************************************/
header, main, footer{
    border: white dotted 4px;
    margin: 0 1.5em;
    padding: 2em;
}
body{
    background-image: url("../img/ahmed-abbas-dPrVq_7xbm8-unsplash.jpg");
}
#wrapper{
    background-color: rgba(45, 22, 5, 0.8);
    color: tan;
}
h2,h3,h4,h5,h6{
    color: purple;
    text-shadow: 2px 2px 4px tan;
}
h1{
    font-size: 450%;
    text-shadow: 4px 4px 8px black;
}
.buttons{
    /*display: block;*/
    /*display: inline-block;*/
    color: tan;
    text-decoration: none;
    border: 4px purple solid;
    padding: 10px;
    margin: .5em;
    border-radius: 30px;
    background-image: linear-gradient(to bottom, rebeccapurple, violet);
    box-shadow: 4px 4px 8px black;
}
nav{
    text-align: center;
    position: sticky;
    top: 18px;
}
header p{
    font-size: 10px;
}
header{
    text-align: center;
    height: 85vh;
    position: relative;
}
header>img {
    position: absolute;
    bottom: 50px;
    right: 10px;
}
header>section{
    border: 6px saddlebrown solid;
    width: fit-content;
    margin: 0 auto;
    position: relative;
    top:30%;
    padding: 2em;
    border-radius: 40px 0;
    background-image: linear-gradient(to bottom, tan,saddlebrown);
    box-shadow: 8px 8px 10px black;
}
footer,#loremSection,#infoSection,#linkSection,#listSection,#imageSection{
    height: 100vh;
    padding-top: 3.5em;
}
#linkSection *, #loremSection>*{
    margin: 1em;
}




