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

Miller Text Roman
font-family: "miller-text", serif;
font-weight: 400;
font-style: normal;

Miller Text Italic
font-family: "miller-text", serif;
font-weight: 400;
font-style: italic;

Miller Text Bold
font-family: "miller-text", serif;
font-weight: 700;
font-style: normal;

Miller Text Bold Italic
font-family: "miller-text", 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: franklin-gothic-urw, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1em;
    background-color: #B2BDB3;
}

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

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

.label {
    width: 100px;
    height: 100px;
    /*border: 1px red solid;*/
    margin: 10px;
    float: left;
    border-radius: 20px;
    padding: 0.5em;
    font-family: "miller-text", serif;
    font-weight: 400;
    font-style: italic;
    font-size: 30px;
    color: white;
}

.square {
    width: 100px;
    height: 100px;
    margin: 10px;
    float: left;
    border-radius: 20px;
    padding: 0.5em;
    font-family: franklin-gothic-urw, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    border-style: solid;
    border-color: white;
    border-width: 1px;
}
.square_whitetext {
    width: 100px;
    height: 100px;
    margin: 10px;
    float: left;
    border-radius: 20px;
    padding: 0.5em;
    font-family: franklin-gothic-urw, sans-serif;
    color: white;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    border-style: solid;
    border-color: white;
    border-width: 1px;
}



.small_circle {

    width: 400px;
    height: 400px;

    margin-right: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
    float: left;
    border-radius: 200px;
    background-color: white;
}

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

    margin-right: 30px;
    margin-top: 30px;
    float: left;
    border-radius: 2em;
    padding: 0.8em;
    box-shadow: 10px 10px 8px #888888;
}

.medium_rect {
    width: 930px;
    height: 170px;

    margin: 10px;
    margin-top: 30px;
    float: left;
    border-radius: 2em;
    padding: 0.8em;
}

.long_rect {
    height: 1240px;
    width: 200px;
    margin-top: 30px;
    margin-right: 50px;
    margin-left: 740px;
    border-radius: 2em;
    
}

.rectangle {
    width: 460px;
    height: 220px;
    margin: 10px;
    margin-top: 30px;
    float: left;
    padding: 0.8em;
    border-radius: 2em;
}

.large_square {
    width: 500px;
    height: 300px;
    margin: 10px;
    margin-top: 80px;
    margin-bottom: 10px;
    float: left;
    padding: 0.8em;
    border-radius: 20px;
}

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

/* GENERAL BOX EFFECTS */

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

.whitetext {
    color: #fff;
    font-family: franklin-gothic-urw, sans-serif;
    font-weight: 700;
    font-style: normal;
    padding: 15px;
}



/*/ / / TEXT / / /*/


h1 {

    font-family: franklin-gothic-urw, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 2.5em;
    color: white;
    background-color: #88968a;
    padding: 5px;
    padding-left: 20px;

}

h2 {
    font-family: "miller-text", serif;
    font-weight: 700;
    font-style: normal;
    font-size: 1.5em;
    color: white;
    margin-left: 20px;
    margin-bottom: 5px;

}


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

header,

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;
}


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

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

    clear: left;
    padding-top: 2em;
    color: #ffffff;
}




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

/*Sets default links style*/
a:link {
    color: #ffffff;
    font-family: franklin-gothic-urw, sans-serif;
    text-decoration: none;
    font-weight: 700;
    font-style: normal;
    margin-top: 30px;
    margin-left: 10px;
    font-size: 1.1em;
}

/*Sets default link mouseover style*/
a:hover {
    color: #000;
}

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

/*Sets default visited link style*/
