

html {
    box-sizing: border-box;
}

* {
    box-sizing: inherit;
    /* border: 1px #999 dotted; */
}


body {
    font-family:"Advent Pro", sans-serif;

    background-color: #e8e52f;
    font-size: 1em;
    width: 80%; /* sets page margin */
    margin: 0 auto;
}

nav{
    margin-bottom: 5em;
    margin-left: .7em;
}

main {
    /* background-color:rgb(255, 248, 225); */
    /* padding: 2em; */
 } 

div {
    /* font-size: .5em; */
    /* background-color: #fff; */

}

h1 {
    margin-left: 15px;
    /* text-align: right; */
}

.square {
    width: 100px;
    height: 130px;
    margin: 20px;
    background-color: #aa0ef2;
    /* border: 1px black solid; */
    border-radius: 10px;
    padding: 0.5em;
    float: left;
    /* float: left; */
}

.circle {
    width: 150px;
    height: 60px;
    margin: .4em;
    background-color: #ac81e8;  
    border-radius: 10px;
    padding: 1em;
    float: left;
}

.divide {
    /* BREAKS THE FLOAT */
    margin-top: 10px;
    clear: left;
    height: 10px;
}

/* GENERAL BOX EFFECTS */

.nobox {
    background-color: #b30fe900;
    /* the last two numbers in the color are opacity = 00 */
}

.shadow {
    box-shadow: 10px 10px 8px #cd96e8;
}

.line1 {
    border: 20px #8d0bea solid;
}

.whitetext {
    color: #cb3ede;
}

.square, .medium_square, .large_square, .rectangle, .small_circle {
    font-size: 30px;
}

.bigger-font {
    font-size: 4em;
}


/*/ / / TOP NAVIGATION AREA / / /*/
/*/ / / Style Appropriate to your design / / /*/

header {
    
}

nav {
    background-color: #8832d9d9;
  padding: 10px 5px 10px 50px;
  height: 60px;

}

nav a {
    float: left; /* more on this later */
color: #bd64e3;
text-align: center;
padding: 5px 10px;
margin-right: 10px;
text-decoration: none;
}


/*/ / / PAGE SECTIONS / / /*/

main {
    /*This adds styles to just the main content area. */
}

footer {
    /*Specific styles for just the footer. */
    font-size: .7em;
    clear: left;
    padding-top: 2em;
    color: #7c547f;
}



/* / / / REGULAR PAGE LINKS / / / */

a:link {
    /*Sets default links style*/
    color: rgb(199, 153, 226);
    text-decoration: none ; /* "none" =  no underline */
  }
  
  a:hover {
    /*Sets default link mouseover style*/
    color: #9620d1;
    text-decoration: underline;
  }
  
  a:visited {
    /*Sets default link down-click style*/
    color: rgb(114, 63, 126);
    text-decoration: none;
  }
  
  a:active {
    /*Sets default visited link style*/
    color: #7416dfd6;
    text-decoration: none;
  }
  

  /* / / / BOTTOM OF PAGE / / / */

 footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgb(103, 21, 154);
    color: rgb(228, 226, 228);
    padding: 1em; /* All four side the same */
 }

