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



.corner {
    width: 200px;
    height: 200px;
    margin: 10px;
    float: right;
    border-radius: 20px;
    padding: 0.5em;
   
        }

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: #b6ffeeb7;
    background-image: url(images/Pixel1.png), url(images/pixel3.png);
  background-position: right bottom, left top;
  background-repeat: no-repeat, repeat;
    
}


#myImg { 
  filter: hue-rotate(40deg);
  background-color:#FFFFFF;
}

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

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

.label {
    width: 240px;
    height: 100px;
    border: 1px #a38bc7 solid;
    margin: 10px;
    float: left;
    border-radius: 20px;
    padding: 0.5em;
    font-size: 2.6em;
    background-color:#4e3e48;
    color: #cac5df;
}

.label2 {
    width: 240px;
    height: 100px;
    border: 1px #b6ffee solid;
    margin: 10px;
    float: left;
    border-radius: 20px;
    padding: 0.5em;
    font-size: 2em;
    background-color:#c0ffb6;
    color: #1cfdc9;
}

.square {
    width: 200px;
    height: 200px;
    margin: 10px;
    float: left;
    border-radius: 20px;
    padding: 0.5em;
}

.small_circle {

    width: 200px;
    height: 150px;

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

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

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

.rectangle {
    width: 260px;
    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;*/   
}



.largee_square {
    width: 460px;
    height: 440px;
    margin: 10px;
    float: left;
    padding: 0.8em;
    border-radius: 230px;
    background-image: url(images/Window2.png);
}


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

/* GENERAL BOX EFFECTS */

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

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

.whitetext {
    color: #fff;
}



/*/ / / TEXT / / /*/


h1 {}

h2 {}

h5 {}

p {}


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


header {}

nav {}

nav a {}

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


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

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

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



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

/*Sets default links style*/
a:link {color:#A27AA4;}

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

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

/*Sets default visited link style*/
a:visited {color:#b6ffee;}