/*/ / / CONTAINER FOR THE WHOLE PAGE / / /*/

/*
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;
*/

html {
    box-sizing: border-box;
	
}

* {
    box-sizing: inherit;
}


body {
    /*Set default fonts for the whole page*/
    font-family: "geller-sans-variable", sans-serif;
font-variation-settings: "wdth" 100, "wght" 400;
    font-size: 1em;
    background-color: #E1DFE1;
	
	
}

div {
    font-size: .8em;
}

/*/ / / Headers and Paragraphs / / /*/

.label {
    width: 100px;
    height: 100px;
    /*border: 1px red solid;*/
    margin: 15px;
    float: left;
    border-radius: 20px;
    padding: 0.5em;
    font-size: 24px;
}
.center {align-content:center;}
.square {
    width: 100px;
    height: 100px;
    margin: 10px;
    float: left;
    border-radius: 20px;
    padding: 0.5em;
}

.small_circle {

    width: 100px;
    height: 100px;

    margin: .5em;
    float: left;
    border-radius: 2.5em;
}

.medium_square {
    width: 220px;
    height: 220px;

    margin: 10px;
    float: left;
    border-radius: 2em;
    padding: 0.8em;
}

.longrec {width:1000px;
height:50px;
float: left;
margin-left: -100px;
border-radius:20px;}

.mediumcirc {
    width: 220px;
    height: 220px;
	margin: 10px;
	margin-top:100px;
    float: left;
    border-radius: 110px;
    padding: 0.8em;
}
.rectangle {
    width: 460px;
    height: 220px;
    margin: 10px;
    float: left;
    padding: 0.8em;
}
.oval {width:220px;
height: 460px;
margin:10px;
float:left;
padding: .8em;
border-radius:50%;}

.large_square {
    width: 300px;
    height: 400px;
    margin: 10px;
    float: left;
    padding: 0.8em;
  
}

.large_square_bot {
    width: 750px;
    height: 400px;
    margin: 10px;
    float: left;
    padding: 0.8em;
  
}
.siderec { width: 400px;
    height: 100px;
    margin-top: 10px;
	margin-left:40px;
    float: left;
    padding: 0.8em;}

.divide {
    /* BREAKS THE FLOAT */
    margin-top: 10px;
    clear: left;
    height: 10px;
}

/* GENERAL BOX EFFECTS */

.shadow {
    box-shadow: 10px 10px 8px #888888;
}

.whitetext {
    color: #fff;
}

#koi {background-image:url(images/monet.png) left top no-repeat, url(images/koi.png) right bottom no-repeat;
background-size: 50px, 100px, auto;}

#mon1 {
  background: url("images/monet.png");
  background-repeat: no-repeat;
}

#koi2 {
  background: url("images/koi.png");
  background-repeat: no-repeat;
}

/*/ / / TEXT / / /*/


h1 {}

h2 {}

h5 {}

p {}


/*/ / / TOP NAVIGATION AREA / / /*/


header {}

nav {}

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 {margin-left:300px;
}

footer {
    /*Specific styles for just the footer. */

    clear: left;
    padding-top: 2em;
    color: #aaa;
}


ul {
  list-style-type: none;
  margin-bottom: 10px;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;

  background-color: #D3C4E3;
}

li {
  float: left;
  
}

li a, .dropbtn {
  display: inline-block;
  color: #8F95D3;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover, .dropdown:hover .dropbtn {
  background-color: #8F95D3;
  color: #D3C4E3;
}

li.dropdown {
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #DBB1BC;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: #004666;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;

}

.dropdown-content a:hover {background-color: #004666;
color: #DBB1BC;
}

.dropdown:hover .dropdown-content {
  display: block;
}
  a.active {
   
    color: #D3C4E3;
    background-color:#8F95D3;}

hr { border-color:#49111C;
}