* {
    padding: 0;
    margin: 0;
}
ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
    color: white;
}
nav {
    padding: 20px 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-spacing: 10px;
    font-family: 'Oswald', sans-serif;
    position: fixed;
    background-color: rgb(17, 17, 17);
    width: 100%;
    top: 0px;
}
body {
    /* font-family: Verdana, Geneva, Tahoma, sans-serif; */
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    background-color: aliceblue;
}
header {
    display: flex;
    background-color: rgb(222, 227, 231);
    background-image: url(../../img/yasuo.jpg);
    background-size: cover;
    background-position: center;
    text-align: center;
    height: 500px;
}
header h1 {
    margin-top: 20%;
    color: rgb(240, 230, 210);
}
h1 {
    display: block;
    font-size: 2em;
    margin-block-start: 0.67em;
    margin-block-end: 0.67em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    color: rgb(240, 230, 210);
}
h2 {
    color: rgb(200, 170, 110);
}
p {
    color: white;
}
nav ul li {
    display: inline-block;
    
}
main{
background-color: #f3f3f3;
min-height: 500px;
display: flex;
}

section{ 
    background-color: rgb(18, 19, 20);
    width: 70%;
}

aside{
background-color: rgb(18, 19, 20);
width: 30%;
}

footer{ 
    background-color: #1e1e1c;
    text-align: center;
    height: 100px;
}
header ,nav, main, section, aside, footer {
    padding: 20px;
}