

html {
    box-sizing: border-box;
}

* {
    box-sizing: inherit;
}

  
  


body {
    /*Set default fonts for the whole page*/
    font-family: "Advent Pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1em;
    background-color: #e7b914;
}

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

.mygrad{
    background-image: radial-gradient(red 5%, yellow 15%, green 60%);
}

.square {
    width: 100px;
    height: 100px;
    margin: 10px;
    float: left;
    border-radius: 20px;
    padding: 0.5em;
    box-shadow: 0px 0px 40px 20px #112502;
    /* box-shadow: 10px 10px 8px #e8ebe5; */
}

.small_circle {

    width: 200px;
    height: 200px;

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

.medium_square {
    width: 150px;
    height: 150px;
box-shadow: 10px 10px 8px #33163b;
    margin: 10px;
    float: left;
    border-radius: 2em;
    padding: 0.8em;
}

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

.large_square {
    width: 500px;
    height: 500px;
    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 #f0f0ef; */
        box-shadow: 0px 0px 40px 20px #030700;
}

.whitetext {
    color: #fefbe5fe;
}



/*/ / / TEXT / / /*/


h1 {}

h2 {}

h5 {}

p {}


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


header {}

nav {
    background-color: #490687d9;
  padding: 12px 3px 2px 20px;
  height: 125px;
  width: 100px;
margin:auto 0;
}

nav a {
    float: left; /* more on this later */
color: #c075e0;
text-align: center;
padding: 5px 10px;
margin-right: 0px;
text-decoration: none;
}
/*/ / / 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: 60%;
    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: #bd58e4;
}



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

a:link {
    /*Sets default links style*/
   
  }
  
  a:hover {
    /*Sets default link mouseover style*/
    color: #3cf03f;
    text-decoration: underline;
  }
  
  a:visited {
    /*Sets default link down-click style*/
    color: rgb(14, 114, 12);
    text-decoration: none;
  }
  
  a:active {
    /*Sets default visited link style*/
    color: #74df16d6;
    text-decoration: none;
  }

/*Sets default visited link style*/
a:visited {}