* {
    box-sizing: border-box;
}
body {background-color:#41393d;
    padding: 0px;
    text-align:left
}
header {
    background-color: #41393d;
    padding: 30px;
    text-align: left;
}
    h1  {
    color: #ef4e22;
    font-size: 50px;
    font-family:"Majesti Banner Medium";
    text-align:center
    }
 h2  {
    color: #ef4e22;
    font-size: 50px;
    font-family: "Majesti Banner Medium";
     text-align:center
    }
p    {
    font-family:"Majesti Banner Medium";
    font-size: 35px;
    color: lightgrey;
    text-align:center
    }
/* Style the header */
/* Create two columns/boxes that floats next to each other */
nav {
    float: left;
    width: 25%;
    height: 300px; 
    background: #41393d;
    padding: 20px;
}

/* Style the list inside the menu */
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 200px;
    background-color:darkgray
}
li a 
{display: block;
    color: #41393d;
    padding: 8px 16px;
    font-family:"Majesti Banner Medium"
}
li a:hover{
    background-color:lightgrey;
    color:white
}
article {
    float: left;
    padding: 20px;
    width: 70%;
    background-color: #41393d;
    height: 600px; 
}