/* CSS HEX 
--auburn: #9e2a2bff;
--timberwolf: #cdd3ceff;
--french-gray: #bbb5bdff; 

Big Caslon CC Regular
font-family: "big-caslon-fb", serif;
font-weight: 400;
font-style: normal;

Big Caslon CC Italic
font-family: "big-caslon-fb", serif;
font-weight: 400;
font-style: italic;

Big Caslon CC Bold
font-family: "big-caslon-fb", serif;
font-weight: 700;
font-style: normal;

Big Caslon CC Bold Italic
font-family: "big-caslon-fb", serif;
font-weight: 700;
font-style: italic;

font-family: "franklin-gothic-urw", sans-serif;
font-weight: 700;
font-style: normal;

font-family: "din-condensed", sans-serif;
font-weight: 400;
font-style: normal;
*/


html {
    box-sizing: border-box;
}

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


body {
    /*Set default fonts for the whole page*/
    font-family: "din-condensed", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color:#cdd3ceff;
    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: 2em; */
 }

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

h1 {
    margin-left: 10px;
    font-family: "din-condensed", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 3em;
}

h2 {
    font-family: big-caslon-fb, serif; 
    font-weight: 700;
    font-style: italic;
    font-size: 15em;
    color:rgb(166, 183, 169);
}

h3 {
    font-family: "big-caslon-fb", serif;
    font-weight: 700;
    font-style: normal;
    font-size: 8em;
    color:#000000c5
}

h4 {
    font-family: "big-caslon-fb", serif;
    font-weight: 700;
    font-style: normal;
    font-size: 2em;
    color:#000000c5;
}

p {

    text-align: left;
    font-size: 4em;
    color: #000000c5;
    margin-top: 50px;
}

.square {
    width: 100px;
    height: 100px;
    margin: 10px;
    margin-right: 20px;
    background-color: #cdd3ceff;
    /* border: 1px black solid; */
    border-radius: 20px;
    padding: 15px;
    text-align: center;
    float: left;
    /* float: left; */
}

.circle {
    width: 300px;
    height: 100px;
    margin: .5em;
    background-color: #fff;  
    border-radius: 100px;
    padding: 2em;
    float: right;
}

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

/* GENERAL BOX EFFECTS */

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

.whitetext {
    color: #fff;
}

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

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


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


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: #9E2A2B;
    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: #9E2A2B;
    text-decoration: none;
  }
  
  a:active {
    /*Sets default visited link style*/
    color: #fff;
    text-decoration: none;
  }
  


 
 footer {
 position: fixed;
 left: 0;
 bottom: 0;
 width: 100%;
 background-color: rgb(0, 0, 0);
 color: rgb(203, 203, 203);
 padding: 1em;
 font-family: franklin-gothic-urw, sans-serif;
 font-weight: 400;
 font-style: normal; /* All four side the same */
 }

/* ////////// FRANKLIN GOTHIC //////// */


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



*/