

html {
    box-sizing: border-box;
}

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


body {
    /*Set default fonts for the whole page*/
    font-family: 'Crimson Pro', serif;
    font-weight: 700;
    font-style: normal;
    background-color:rgb(142, 227, 255);
    font-size: 1em;
    width: 80%; /* sets page margin */
    margin: 0 auto;
}

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

main {
background-color: bisque;
padding: 10px;
 }

div {

}

h1 {
    margin-left: 10px;
    font-size: 2em;
    font-family: 'Rye', cursive;
}

.square {
    width: 150px;
    height: 100px;
    margin: 10px;
    text-align: center;
    background-color: #fff;
    /* border: 1px black solid; */
    padding: 0.5em;
    float: left;
    border-radius: 15px;
}

.rectangle {
    width: 300px;
    height: 100px;
    margin: 10px;
    text-align: center;
    background-color: #fff;
    padding: 0.5em;
    float: left;
}

.siderectangle {
    width: 100px;
    height: 300px;
    margin: 10px;
    text-align: center;
    background-color: #fff;
    padding: 0.5em;
    float: left;
}

.circle {
    width: 100px;
    height: 100px;
    margin: .5em;
    text-align: center;
    background-color: #fff;  
    border-radius: 100px;
    padding: 2em;
    float: left;
}

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

.split {
    width: 100px;
    height: 100px;
    margin: .5em;
    text-align: center;
    background-color:transparent;  
    border-radius: 100px;
    padding: 2em;
    float: left;
}

.fonty{
    font-family: 'Rye', cursive;
}

/* GENERAL BOX EFFECTS */

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

.magic {
    border-color: #ffffffe3;
    border-style: groove;
    border-width: .5em;
}

.whitetext {
    color: #fff;
}

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

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


/*/ / / TOP NAVIGATION AREA / / /*/


header {}

nav {}

nav a {}

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



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

footer {
    font-size: .8em;
    clear: left;
    padding-top: 2em;
    color: #aaa;
}



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

a:link {
    color: red;
    text-decoration: none ;
  }
  
  a:hover {
    color: #000;
    text-decoration: underline;
  }
  
  a:visited {
    /*Sets default link down-click style*/
    color: red;
    text-decoration: none;
  }
  
  a:active {
    /*Sets default visited link style*/
    color: #fff;
    text-decoration: none;
  }
  


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

/* ////////// FRANKLIN GOTHIC //////// */


/*
FranklinGothic URW Book

font-family: franklin-gothic-urw, sans-serif;

font-weight: 400;

font-style: normal;


FranklinGothic URW Demi

font-family: franklin-gothic-urw, sans-serif;

font-weight: 700;

font-style: normal;


FranklinGothic URW Book Italic

font-family: franklin-gothic-urw, sans-serif;

font-weight: 400;

font-style: italic;


FranklinGothic URW Demi Italic

font-family: franklin-gothic-urw, sans-serif;

font-weight: 700;

font-style: italic;



*/