/*/ / / CONTAINER FOR THE WHOLE PAGE / / /*/

/*
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;
*/

html {
    box-sizing: border-box;
}

* {
    box-sizing: inherit;
}


body {
    /*Set default fonts for the whole page*/
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1em;
    background-color: #ABB8FF;
}

div {
    font-size: .8em;
    background-color: #fff;
}

/*/ / / Headers and Paragraphs / / /*/

.label {
    width: 100px;
    height: 100px;
    /*border: 1px red solid;*/
    margin: 10px;
    float: left;
    border-radius: 20px;
    padding: 0.5em;
    background-color: aliceblue;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 700;
    font-size: 1;
}

.square {
    width: 100px;
    height: 100px;
    margin: 10px;
    float: left;
    border-radius: 20px;
    padding: 0.5em;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 1em;
    color: aliceblue;
    -webkit-text-stroke: .5px black;
}

.small_circle {

    width: 100px;
    height: 100px;

    margin: .5em;
    float: left;
    border-radius: 2.5em;
}

.medium_square {
    width: 220px;
    height: 220px;

    margin: 10px;
    float: left;
    border-radius: 2em;
    padding: 0.8em;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 1em;
    color: aliceblue;
    -webkit-text-stroke: .5px black;
}

.rectangle {
    width: 460px;
    height: 220px;
    margin: 10px;
    float: left;
    padding: 0.8em;
}

.large_square {
    width: 460px;
    height: 440px;
    margin: 10px;
    float: left;
    padding: 0.8em;
    /* border-radius: 230px;*/
}

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

/* GENERAL BOX EFFECTS */

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

.whitetext {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 1em;
    color: aliceblue;
    -webkit-text-stroke: .5px black;
}



/*/ / / TEXT / / /*/


h1, h2, h5, p{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #4B00BD;
}


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


nav {
    padding: 10px;
    color:#4B00BD;
    border-radius: 10px;
    }
nav a:link {
    color: #4B00BD;
    background-color: aliceblue;
    padding: 5px;
    border-radius: 3px;
    text-decoration:none;
  }
nav a:visited {
    color: #4B00BD;
    background-color: aliceblue;
    padding: 5px;
    border-radius: 6px;
    text-decoration:none;
  }
nav a:hover {
    color: #4B00BD;
    background-color:aliceblue;
    padding: 5px;
  }
nav a:active {
    color: blue;
  }

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

header,
nav,
main,
footer {
    /*
This styles all three primary structures at once.
The comma means: this, this, and this get styled
the same way. */

    /*Width and margin centers the contents */
    width: 80%;
    margin: 0 auto;

    /*Padding puts space inside the boxes providing 
room to breath for the type*/
    padding-left: 1em;
    padding-right: 1em;
}


footer {
    /*Specific styles for just the footer. */

    clear: left;
    padding-top: 2em;
    color: aliceblue;
}



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

/*Sets default links style*/
a:link {
    color: #4B00BD;
    background-color: aliceblue;
    padding: 5px;
    border-radius: 3px;
    text-decoration:none;}

/*Sets default link mouseover style*/
a:hover {
    color: #4B00BD;
    background-color: aliceblue;
    padding: 5px;
    border-radius: 6px;
    text-decoration:none;
}

/*Sets default link down-click style*/
a:active {
    color: #888888;
}

/*Sets default visited link style*/
a:visited {
    color: #4B00BD;
    background-color: aliceblue;
    padding: 5px;
    border-radius: 6px;
    text-decoration:none;
}