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



html {
    box-sizing: border-box;
}

* {
    box-sizing: inherit;
}

main{
    background-color:#c30068;
    margin:50px;
}


body {
    /*Set default fonts for the whole page*/
    font-family: "rooney-web", serif;
  font-weight: 400;
  font-style: normal;
    font-size: 1em;
    background-color: #0400ff;
    margin: 200px;
}

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.9em;
}

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

.small_circle {

    width: 100px;
    height: 100px;

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

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

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

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

.large_square {
    width: 460px;
    height: 440px;
    margin: 10px;
    float: left;
    padding: 0.8em;
    border-radius: 20px;
    /* 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 {
    color: #fff;
}

h1{
    font-size: 2.6em; 
    font-family: "aabak", sans-serif;
    font-weight: 600;
    font-style: normal;

}


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


nav a:link {
color: #ffffff;
background-color:#8558ff;
border-radius: 5px;
text-decoration:none;
font-family: "rooney-web", serif;
  font-weight: 400;
  font-style: normal;
padding: 5px;
}
/* visited link */
nav a:visited {
color: #ffffff;
background-color:#8558ff;
border-radius: 5px;
text-decoration:none;
font-family: "rooney-web", serif;
  font-weight: 400;
  font-style: normal;
padding: 5px;
/* margin: px */
}

/* mouse over link */
nav a:hover {
color: #ffffff;
background-image: url(images/pink_glitter.jpeg);
background-size: 160px;
background-color:#16d797;
}

/* selected link */
nav a:active {
color: #ff61b8;
}

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



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

/* unvisited link */
a:link {
color: #e40079;
text-decoration:none;
}

/* visited link */
a:visited {
color: #c30068;
}

/* mouse over link */
nav a:hover {
color: #ffffff;
background-color:#ff61b8;
background-image: url(../images/pink_glitter.jpeg);
background-size: 160px;
}

/* selected link */
a:active {
color: #fff;
}

/* Aabak Bold
font-family: "aabak", sans-serif;
font-weight: 700;
font-style: normal;

Aabak Italic Bold
font-family: "aabak", sans-serif;
font-weight: 700;
font-style: italic;

Aabak Regular
font-family: "aabak", sans-serif;
font-weight: 400;
font-style: normal;

Aabak Italic Regular
font-family: "aabak", sans-serif;
font-weight: 400;
font-style: italic;

Aabak Swash Bold
font-family: "aabak-swash", sans-serif;
font-weight: 700;
font-style: normal;

Aabak Swash Regular
font-family: "aabak-swash", sans-serif;
font-weight: 400;
font-style: normal; */
