header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #313F1F;
    height:65px;

}
#menu{
        display: flex;
        justify-content: space-between;
        background-color: var(--ivory);
        height: 50px;
        margin-right: 100px;
    }
nav ul{
    display: flex;
    justify-content: space-between;
}
nav a{
    margin-left: 5em;
}
#title{
    margin-left: 15px;
    color: white;
    font-size: 32px;
}
nav ul li{ 
    color: white; 
    font-size: 20px;
}
header a{
    text-decoration: none;
}
body {
    margin: 0;
    min-height: 100vh;
}
a:link, a:visited {
    color: white;
}
a:hover, a:active {
    color: lime;
}    
html{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}