

html {
    box-sizing: border-box;
}

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


body {
    /*Set default fonts for the whole page*/
    font-family: "legitima", serif;
font-weight: 500;
font-style: normal;
    background-color: #2f3774;
    font-size: 1em;
    width: 80%; /* sets page margin */
    margin: 0 auto;
    color: #cdd27e;
}

nav a:link {
color:#0084a2;
/* background-color:#b12b2b; */
/* border-radius: 6px; */
text-decoration:none;
}
/* visited link */
nav a:visited {
color: #cdd27e;
/* background-color:#b12b2b; */
/* border-radius: 6px; */
}

/* mouse over link */
nav a:hover {
color: #cdd27e;
background-color:#7ea4b0;
}

/* selected link */
nav a:active {
color: #4c6394;
background-color:#7ea4b0;
}

nav {
height: 60px;
font-family: "superior-title", serif;
font-weight: 700;
font-style: normal;
letter-spacing: 2px;
font-size: .9em;
font-weight: 800;

height: 3em;
overflow: hidden;

}

nav a {
/* APPLIES TO ALL LINKS IN THE NAV */

float: left;
color: #ffffff;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}

nav a.active {
/* PUT "active" AS A CLASS ON THE CURRENT PAGE LINK */
color: #82e8ff;
background-color:  #9ab4ba;

}

main {
    background-color:#4c6394;
    font-family: "legitima", serif;
    font-weight: 500;
    font-style: normal;
    color:#cdd27e ;
 }

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

h1 {
    margin-left: 10px;
}

.square {
    width: 100px;
    height: 100px;
    margin: 10px;
    background-color: #7ea4b0;
    /* border: 1px #7ea4b0 solid; */
    border-radius: 5px;
    padding: 2em;
    float: left;
}

.medium_square {
    width: 200px;
    height: 200px;
    margin: 20px;
    background-color: #7ea4b0;
    /* border: 1px #7ea4b0 solid; */
    border-radius: 5px;
    padding: 2em;
    float: left;
    /* float: left; */
}

.circle {
    width: 100px;
    height: 100px;
    margin: 1em;
    background-color: 	#7ea4b0;  
    border-radius: 100px;
    padding: 2em;
    float: left;
}

.bigger-font {
    font-size: 4em;
    font-family: "gelato-luxe", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.font {
    font-size: 2em;
    font-family: "legitima", serif;
    font-weight: 500;
    font-style: normal;
}

.divide {
    /* BREAKS THE FLOAT */
    margin-top: 10px;
    clear: left;
    height: 10px;
    font-family: "gelato-luxe", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* GENERAL BOX EFFECTS */

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

.whitetext {
    color: 	#cdd27e;
}

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

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


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


header {}

nav {
    font-family: "superior-title", serif;
  font-weight: 700;
  font-style: normal;
}

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: #cdd27e;
    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;
  }
  


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

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



*/