html {
    box-sizing: border-box;
}

* {
    box-sizing: inherit;
}

body {
    /*Set default fonts for the whole page*/
    font-family: "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400px;
    font-style: normal;
    font-size: 35px;
    background-image: linear-gradient(10deg, #5427d1, #1c441b);
}

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

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

.label {
    width: 200px;
    height: 100px;
    background-color: #F5BB00;
    border-width: 5px;
    border-color: #fff;
    margin: 75px 15px;
    float: left;
    border-radius: 200px;
    padding: 0.5em;
    text-align: center;
}

.label2 {
    width: 200px;
    height: 100px;
    background-color: #adc4d3;
    border-color: #fff;
    border-width: 5px;
    margin: 75px 15px;
    float: left;
    border-radius: 500px;
    padding: 0.5em;
}

.square {
    display: inline-block;
    width: 100px;
    height: 100px;
    margin-top: 75px;
    border-radius: 20px;
    padding: 0.5em;
    font-size: 15px;
}

.small_circle {

    width: 100px;
    height: 100px;

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

.medium_square {
    width: 150px;
    height: 150px;
    margin: 10px;
    float: left;
    border-radius: 2em;
    padding: 0.8em;
    font-size: 15px;
}

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

.large_square {
    width: 250px;
    height: 220px;
    margin: 10px;
    float: left;
    padding: 0.8em;
    border-radius: 230px;
}

.image {
    width: 500px;
    height: 350px;
    margin: 10px;
    float: left;
    padding: 0.8em;
    border-radius: 500px;
}

.logo {
    width: 300px;
    height: 300px;
    margin: 10px;
    float: left;
    padding: 0.8em;
    border-radius: 500px;
}

.divide {
    /* BREAKS THE FLOAT */

    margin-bottom: 10px;
    background-color: #fff;
    clear: left;
    height: 4px;
    border-radius: 2em;
}
.divide2 {
    /* BREAKS THE FLOAT */

    margin-bottom: 10px;
    clear: left;
    height: 4px;
    border-radius: 2em;
}

/* GENERAL BOX EFFECTS */

.shadow {
    box-shadow: 1px 10px 50px #fff;
}

.shadow2 {
    box-shadow: 1px 1px 50px #6740D3;
}

.whitetext {
    color: #fff;
}



/*/ / / TEXT / / /*/


h1 {}

h2 {}

h5 {}

p {}


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


header {
    text-align: center;
}

nav {
    font-size: 20px;
    text-align: center;
}

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: 2em;
    width: 900px;
    height: 58px;
    font-size: 10px;
    color: #fff;
}

#content {
  width: 100px;
  margin-left: 500px;
}
/* /// LINKS /// */

nav {
height: 5px;
padding: 2em 0;
letter-spacing: 2px;
font-size: 15px;
margin-bottom: 125px;
margin-top: 25px;
}
/* unvisited link */
nav a:link {
color: #FFFFD8;
background-color:#652215;
border-radius: 5px;
text-decoration:none;
}
/* visited link */
nav a:visited {
color: #FFFFD8;
background-color:#652215;
border-radius: 6px;
}
/* mouse over link */
nav a:hover {
color: #FFFFD8;
background-color:#A79182;
background-size: 160px;
}

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

/* how buttons will look */
nav a {
float: left; /* more on this later */
color: #FFFFD8;
text-align: center;
padding: 8px 21px;
margin:5px;
margin-right: 10px;
margin-left: 0px;
text-decoration: none;
}

 /* change based on current page */
nav a.active {
 /* PUT "active" AS A CLASS ON THE CURRENT PAGE LINK */ 
 color: #FFFFD8;
background-color:#652215;
border-radius: 4px;
} 

/* / / / REGULAR PAGE LINKS / / /

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

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

/*Sets default link down-click style*/
a:active {}

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