

html {
    box-sizing: border-box;
}

* {
    box-sizing: inherit;
    /* border: 1px #999 dotted; */
}


body {
    font-family: sans-serif; /* REPLACE WITH CUSTOM FONT */
    font-weight: 700;
    font-style: normal;
    background-color: #ffa600;
    font-size: 1em;
    width: 80%; /* sets page margin */
    margin: 0 auto;
}

nav{
    margin-bottom: 2em;
    margin-left: .5em;
}

main {
    /* background-color:rgb(255, 248, 225); */
    padding: 6em;
 } 

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

}

h1 {
    margin-left: 10px;
    color: #fff;

    font-family: "leida", sans-serif;
    font-weight: 700;
    font-style: normal;
    /* text-align: right; */
}

.square {
    width: 100px;
    height: 100px;
    margin: 10px;
    background-color: #e46b6b;
    /* border: 1px black solid; */
    border-radius: 50px;
    padding: 0.5em;
    float: left;
    box-shadow: 10px 10px 8px #c78200;
    font-size: 3px;
    font-family: "leida", sans-serif;
font-weight: 700;
font-style: normal;
    /* float: left; */
}

.square_2 {
    width: 100px;
    height: 100px;
    margin: 10px;
    background-color: #7c3333;
    /* border: 1px black solid; */
    border-radius: 50px;
    padding: 0.5em;
    float: left;
    box-shadow: 10px 10px 8px #9d6703;
    font-size: 50px;
    font-family: "leida", sans-serif;
font-weight: 700;
font-style: normal;
    /* float: left; */
}

.circle {
    width: 100px;
    height: 100px;
    margin: .5em;
   /* background-color: #fff; */
    /* border: 1px black solid; */
    border-radius: 100px;
    padding: em;
    float: left;
    font-size: 70px;
    font-family: "oculi-display", sans-serif;
font-weight: 400;
font-style: normal;
float: left;
}

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

/* GENERAL BOX EFFECTS */

.nobox {
    background-color: #a2323200;
    font-size: 70px;
    font-family: "oculi-text", sans-serif;
font-weight: 700;
font-style: normal;
    /* the last two numbers in the color are opacity = 00 */
}

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

.line1 {
    border: 2px #000 solid;
}

.whitetext {
    color: #ffffff;
}

.square, .medium_square, .large_square, .rectangle, .small_circle {
    font-size: 30px;
}

.bigger-font {
    font-size: 4em;
}


/*/ / / TOP NAVIGATION AREA / / /*/
/*/ / / Style Appropriate to your design / / /*/

header {}

nav {}

nav a {}


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

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

footer {
    /*Specific styles for just the footer. */
    font-size: .8em;
    clear: left;
    padding-top: 2em;
    color: #aaa;
}



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

a:link {
    /*Sets default links style*/
    color: rgb(255, 0, 0);
    text-decoration: none ; /* "none" =  no underline */
  }
  
  a:hover {
    /*Sets default link mouseover style*/
    color: #000;
    text-decoration: underline;
  }
  
  a:visited {
    /*Sets default link down-click style*/
    color: red;
    text-decoration: none;
  }
  
  a:active {
    /*Sets default visited link style*/
    color: #fff;
    text-decoration: none;
  }
  

  /* / / / BOTTOM OF PAGE / / / */

 footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgb(0, 0, 0);
    color: rgb(203, 203, 203);
    padding: 1em; /* All four side the same */
 }

/*
Leida Regular
font-family: "leida", sans-serif;
font-weight: 400;
font-style: normal;

Leida Regular Italic
font-family: "leida", sans-serif;
font-weight: 400;
font-style: italic;

Leida Bold
font-family: "leida", sans-serif;
font-weight: 700;
font-style: normal;

Leida Bold Italic
font-family: "leida", sans-serif;
font-weight: 700;
font-style: italic;
*/

/*
Oculi Display Regular
font-family: "oculi-display", sans-serif;
font-weight: 400;
font-style: normal;

Oculi Display Regular Italic
font-family: "oculi-display", sans-serif;
font-weight: 400;
font-style: italic;

Oculi Display Bold
font-family: "oculi-display", sans-serif;
font-weight: 700;
font-style: normal;

Oculi Display Bold Italic
font-family: "oculi-display", sans-serif;
font-weight: 700;
font-style: italic;

Oculi Text Regular
font-family: "oculi-text", sans-serif;
font-weight: 400;
font-style: normal;

Oculi Text Regular Italic
font-family: "oculi-text", sans-serif;
font-weight: 400;
font-style: italic;

Oculi Text Bold
font-family: "oculi-text", sans-serif;
font-weight: 700;
font-style: normal;

Oculi Text Bold Italic
font-family: "oculi-text", sans-serif;
font-weight: 700;
font-style: italic;
*/