* {
    box-sizing:border-box;
}

body {
    background-color:#dddfff;
    padding:0px;
    margin:0px;
    font-family:Verdana, sans-serif;
    /*I prefer sans-serif fonts for websites! Verdana is my go-to choice because 1) spelling is easy 2) idk most other sansserif fonts other than... arial.... lol*/
    font-size:18px;
}
/* haha. reset values? whats that....... hahahaa.... */

/* nav stuff */
nav {
    width:100%;
    display:block;
    background-image:linear-gradient(#aabaff, #7788bb);
    position:fixed;
    margin:0px;
    
}
nav > navli > li > a {
    color:inherit;
    text-decoration:none;
}

nav > navli > li {
    display:inline-block;
    width:auto;
    padding:0.75em 1.5em;
    color:#eeeeff;
    margin:0px;
}
nav > navli > li:hover {
    background-image:linear-gradient(#7788bb, #aabaff);
    color:#dde;
}
