

html {
    box-sizing: border-box;
}

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

body {
    color: #6D3E4C ;
    font-family: sans-serif; /* REPLACE WITH CUSTOM FONT */
    font-weight: 700;
    font-style: normal;
    background-color: #C57088;
    font-size: 1em;
    width: 80%; /* sets page margin */
    margin: 0 auto;
    background-image: url(./images/greenpinkpolka.jpg)
}

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

main {
    /* background-color:rgb(255, 248, 225); */
    background-color: #FF91B0;
    margin-bottom: 100px;
    /* padding: 2em; */
 } 

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

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

.circle {
    width: 100px;
    height: 100px;
    margin: .5em;
    background-color: #7D924A;  
    border-radius: 100px;
    padding: 2em;
    float: left;
}

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

/* GENERAL BOX EFFECTS */

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

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

.greenshadow {
    box-shadow: 10px 10px 25px #d1ff81;
}

.pinkshadow {
    box-shadow: 10px 10px 25px #FFCCDB
}

.line1 {
    border: 2px #63743B solid;
}

.lightpinktext {
    color: #FFCCDB;
}

.darkgreentext {
    color:#5F7139 ;
}

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

.evenbiggerfont {
    font-size: 4em;
}

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

.medium-font {
    font-size: 2em;
}


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

header {
color:#343d1d;
}

nav {
height: 3em;
padding: 2em 0;
letter-spacing: 1px;
font-size: 1em ;
font-weight: 800;
}

/* unvisited link */
nav a:link {
color: #AAC966;
background-color:#607239;
border-radius: 10px;
text-decoration:none;
padding: 8px;
}

/* visited link */
nav a:visited {
color: #48552B;
background-color:#E2819C
;
border-radius: 6px;
}

/* mouse over link */
nav a:hover {
color: #2F381C;
background-color:#FF91B0
;
}

/* selected link */
nav a:active {
color: #AACA65;
}

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


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



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

a:link {
    /*Sets default links style*/
    color: #5F7139;
    text-decoration: none ; /* "none" =  no underline */
  }
  
  a:hover {
    /*Sets default link mouseover style*/
    color: #fff;
    text-decoration: underline;
  }
  
  a:visited {
    /*Sets default link down-click style*/
    color: #C1E573;
    text-decoration: none;
  }
  
  a:active {
    /*Sets default visited link style*/
    color: #fff;
    text-decoration: none;
  }
  

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

 footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #8A4F60;
    color: #C1E573(203, 203, 203);
    padding: 1em; /* All four side the same */
 }

