*{
    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{
    color: tan;
    background-color: rgba(58, 28, 8, 0.79);
}
h2,h3,h4,h5,h6{
    color: purple;
    text-shadow: 1px 1px 4px tan;
}
h1{
    font-size: 450%;
    text-shadow: 4px 4px 8px black;
}
.buttons{
    /*display: 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;
}

header p{
    font-size: 10px;
}
header{
    text-align: center;
    height: 85vh;
    position: relative;
}
header>img{
    position: absolute;
    bottom: 50px;
    right: 10px;
}
header>section{
  border: saddlebrown solid 6px;
    width: fit-content;
    margin: 0 auto;
    position: relative;
    top: 30%;
    padding: 2em;
    border-radius: 40px 0;
    background-image: linear-gradient(to top,saddlebrown,tan);
    /*background-image: url("../img/cat.jpg");*/

    box-shadow: 8px 8px 10px black;
}
footer,#loremSection,#listSection,#linkSection,#infoSection,#imageSection{
    height: 100vh;
    padding-top: 3.5em;
}
#linkSection *,#loremSection>*{
    margin: 1em;
}
/**********************************************************************/
@font-face {
    font-family: myFont;
    src: url("../fonts/BigShouldersStencil-Black.ttf");
}
h1{
    font-family: myFont, sans-serif;
}

.roboto100 {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
    font-variation-settings:
            "wdth" 100;
}
nav{
    /*text-align: center;*/
    background-color: rgba(128, 0, 128, 0.6);

    position: sticky;
    top: 0;
}
nav>ul{
    list-style-type: none;
    padding: 0;
    /*border: red dotted 4px;*/
    /*background-color: purple;*/
    overflow: hidden;
    margin: 0 auto;
    width: fit-content;
}
nav>ul>li>a{
    text-decoration: none;
    color: tan;
    padding: 14px 16px;
    display: block;
}
nav li{
    float: left;
}
nav>ul>li>a:hover{
    background-color: rebeccapurple;
}
/*#listSection h4+ul>li:nth-child(odd){*/
/*    background-color: black;*/
/*}*/
/*#listSection h4+ul>li:nth-child(even){*/
/*    background-color: black;*/
/*}*/
/*#listSection h4+ul>li:nth-child(2n){*/
/*    background-color: black;*/
/*}*/
#listSection h4+ul>li:nth-child(2n-1){
    background-color: black;
    width: 30%;
}
/*#imageSection>h2+a,#imageSection>h2+a+img,#imageSection>h2+a+img+a{*/
/*    float: right;*/
/*}*/
#imageSection h2+figure{
    float: right;
}
/*.clear{*/
/*    clear: both;*/
/*}*/

