

html {
    box-sizing: border-box;
}

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


body {
    font-family: "coronette", serif;
    font-weight: 400;
    font-style: normal;
    background-color: #FDFFF2;
    font-size: 1em;
    width: 80%;
    margin: 0 auto;
}

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


h1 {
    margin-left: 10px;
    padding-bottom: 20px;
    border-bottom: 5px solid #FB8EA3;
    color:#BF5E70;
}

.square1 {
    width: 200px;
    height: 200px;
    margin: 20px;
    background-color: #BF5E70;
    color: #FFE1C9;
    border-radius: 5px;
    font-size: 2em;
    float: left;
    text-align: center;
    padding: 40px;
}

.square2 {
    width: 200px;
    height: 150px;
    margin: 20px;
    color: #BF5E70;
    border-radius: 5px;
    font-size: 3em;
    float: left;
    text-align: center;
}

.squaremedium {    
    width: 150px;
    height: 150px;
    margin: 20px;
    background-color: #BF5E70;
    color: #FFE1C9;
    border-radius: 5px;
    font-size: 6em;
    float: left;
    text-align: center;
    padding-top: 16px;
}

.squaresmall {
    width: 100px;
    height: 100px;
    margin: 10px;
    background-color: #FF91A7;
    color: #BF5E70;
    border-radius: 5px;
    font-size: 2em;
    float: left;
    text-align: center;
    border-left: 5px solid #BF5E70;
    border-top: 5px solid #BF5E70;
}

.rectangle1 {
    width: 400px;
    height: 120px;
    margin: 50px;    
    color: #FFC485;
    background-color:#F28066;
    box-shadow: 10px 10px 0px #FDFFF2, 20px 20px 0 #FFC485;
    font-size: 4em;
    text-align: center;
    border-radius: 3px;
    float: left;
    padding-top: 10px;
    
}

.rectangle2 {
    width: 400px;
    height: 120px;
    margin: 50px;    
    color: #F28066;
    background-color:#FFC485;
    box-shadow: 10px 10px 0px #FDFFF2, 20px 20px 0 #F28066;
    font-size: 4em;
    text-align: center;
    border-radius: 3px;
    float: left;
    padding-top: 10px;
    
}

.circle {
    width: 150px;
    height: 150px;
    margin: 20px;    
    color: #EFF1E6;
    background-color:#F28066;
    font-size: 2em;
    text-align: center;
    float: left;
    padding-top: 25px;
    border-radius: 100px;
    border: 30px double #FDFFF2;
}

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

footer {
    font-size: .8em;
    clear: left;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #FFE1C9;
    color: #FF866B;
    padding: 1em; 
}


a:link {
    color: #F28066;
    text-decoration: none ;
  }
  
  a:hover {
    color: #BF5E70;
    text-decoration: underline;
  }
  
  a:visited {
    color: #F28066;
    text-decoration: none;
  }
  
  a:active {
    color: #fff;
    text-decoration: none;
  }
  
