/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: aquamarine;
  color: black;
  font-family: Verdana;
}

.menu-tabs{
	background-color:black;
    color:white;
    padding:20px;
}
/* .class DOM = applying style to all children of a .class */
/* .class > DOM = applying style to direct children of a class */
/* DOM.class = overriding class styles when the "class" is applied as attribute to that DOM type */
.menu-tabs ul{
    	background-color:blue;
	    list-style-type:circle;
	    float:left;  
    }
    

