@charset "utf-8";
/* CSS Document */

.navigation {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
  
  list-style: none;
  margin: 0; 
  
}

.navigation a {
	text-decoration: none;
	display: block;
	font-family: 'Piazzolla', serif;
	font-size: 16pt;
	color: #FFF;
	font-weight: 300;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 1);
	font-style: italic;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
}

.navigation a:hover {
  color: #dbc56f;
}

@media all and (max-width: 800px) {
  .navigation {
    justify-content: space-around;
  }
}

@media all and (max-width: 600px) {
  .navigation {
    flex-flow: column wrap;
    padding: 0;
  }
  .navigation a { 
    text-align: center; 
    padding: 10px;
    border-top: 1px solid rgba(255, 255, 255,0.3); 
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); 
  }
  .navigation li:last-of-type a {
    border-bottom: none;
  }
}
.eagle_button {
	color: #FFF;
	text-decoration: none;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	font-family: 'Piazzolla', serif;
	font-size: 14pt;
	color: #FFF;
	font-weight: 300;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 1);
	font-style: italic;
	background-color: #43502e;
	padding-right: 15px;
	padding-left: 15px;
	margin-top: 20px;
	margin-bottom: 10px;	
}
.eagle_button:hover {
	color: #FFF;
	
	background-color: #5e7040;
	
}
a.eagle_button:link {
	color: #FFF;
	text-decoration: none;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	text-shadow: 0px 0px 1px #20063a;
	font-size: 14pt;
	font-weight: normal;
	letter-spacing: 0.06em;
	background-color: #43502e;
	padding-right: 15px;
	padding-left: 15px;
	white-space: nowrap;
}
a.eagle_button:hover {
	color: #FFF;
	
	background-color: #5e7040;
	
}
.top-corner {
font-family: 'Piazzolla', serif;
	font-size: 16pt;
	color: #FFF;
	font-weight: 400;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 1);
	font-style: italic;	
}
a.top-corner:link {
	font-family: 'Piazzolla', serif;
	font-size: 14pt;
	color: #dbc56f;
	font-weight: 400;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 1);
	font-style: italic;
}
a.top-corner:hover {
	color: #FFF;
}
a.top-corner:visited {
	color: #dbc56f;
}
a.top-corner:active {
	color: #FFF;
}
.top-corner-holder {
  display: flex;
  width: 180px; 
  justify-content: space-between;
}

.top-corner-item {
  width: 100px;  /* Or whatever */
  margin: auto;  /* Magic! */
}