
/*  *****  Island Positioning   ***** */

body{
	height: 75%;
	/*background-color: #a8ffd5;*/
}

#islands{
	background-repeat: no-repeat;
	background-size: cover;
}

h3{
	font-family: "Bree Serif", Verdana, serif;
	font-size: 1.2em;
	color: #800000;
	margin: 5% auto 0 auto;
	padding-top: 15px;
}

#calderon{
	width: 120px;
	position: relative;
	margin: 0 auto;
	display: block;
	}

#row1{
	display: block;
	clear: both;
}

#keep{
	float: left;
    left: 20%;
	position: relative;
	margin-top: -5px;
	display: inline;
}
/*
#keep img{
	width: 20%;
	height: 100px;
}*/

#mystic{
	right: 16%;
	float: right;
	position: relative;
	margin-top: -5px;
	display: block;
}
/*
#mystic img{
	width: 20%;
	height: 100px;
}
*/

#row2{
	width: 100%;
	display: inline;
	clear: both;
}

#faeyruun{
	margin-left: 8%;
	float: left;
	display: inline-block;
	margin-top: 25px;
	clear: left;

}
/*
#faeyruun img{
	width: 25%;
	height: 145px;
}*/

#griffin{
	margin-right: 10%;
	float: right;
	margin-top: 25px;
	display: inline-block;
	clear: right;
}

#row3{
	display: block;
		}
		
#kriltnar{
	left: 3%;
	position: relative;
	display: block;
	margin-top: 40px;
	margin-bottom: 0;
	clear: left;
	float: left;
}
/*
#kriltnar img{
	width: 35%;
}
*/

#elthoria{
	margin-right: 20%;
	float: right;
	display: inline-block;
	
}

#ascentia{
	width: 100%;
	height: 5%;
	position: fixed;
	left: 0;
	bottom: 0;
	}

/* **********  Popup Styling  ***************** */
/* Popup container */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

span{
	margin-bottom: -40px;
}
/* The actual popup */
.popup .popuptext {
  visibility: hidden;
  width: 350px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -80px;
}

/* **************  Popup arrow  ********* */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class - hide and show the popup */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;} 
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}