body {
    
    color:#d157ff;
    background-color:#edbdff;
    font-family:monospace, serif;
    /* "em" and "px" are the two measurements used in coding with HTML + CSS */
    padding-left:11em;
    
}

h1 {
    
    /* Some fonts DO work! Some fonts however do not. :C */
    font-family:courier,serif;
    
}

ul.navbar {
    
    /* It will STAY in that position with position:absolute; (!!!!) */
    position:absolute;
    top:2em;
    left:1em;
    width:9em;
    /* vv Basically saying "NO LIST BULLET POINTS." The padding and margin let the list tighten
    up a bit. vv */
    list-style-type:none;
    padding:0;
    margin:0;
    
}

ul.navbar li {
    background-color:#f6dbff;
    margin:0.5em;
    padding:0.3em;
    border-right:1em solid #d561ff;
}

ul.navbar a {
    
    text-decoration:none;
    
}

a:link {
    
    color:#e187ff;
    
}

a:visited {
    
    color:#e187ff;
    
}

address {
    
    margin-top:1em;
    padding-top:1em;
    border-top:thin dotted;
    
    
}

div#main2 {
    
  background-color: #edbdff;
  width: 350px;
  height: 300px;
  border: 2px dashed;
  overflow: auto;
  
}
    
}