/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

@font-face {
    font-family: 'monadregular';
    src: url('monad-webfont.woff2') format('woff2'),
         url('monad-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #660000;
     font-size: 15px;
     color: white;
     font-family: Verdana;
}


	h1 {
  font-size: 80px;
  color: white;
  line-height: .2;
  font-family: 'monadregular';
  font-weight: normal;
  font-style: normal;
  }
  
  h2 {
  font-size: 30px;
  color: white;
  line-height: .2;
  font-family: 'monadregular';
  font-weight: normal;
  font-style: normal;
  }

/* unvisited link */
a:link {
  color: #ff8080;
  text-decoration: none;
}

/* visited link */
a:visited {
  color: #ff8080;
  text-decoration: none;
}

/* mouse over link */
a:hover {
  color: #ffe6e6;
  text-decoration: underline;
}

/* selected link */
a:active {
  color: #ff8080;
  text-decoration: none;
}

a.button{
 display:inline-block;
 padding:0.3em 1.2em;
 margin:0 0.1em 0.1em 0;
 border:0.16em solid rgba(255,255,255,0);
 border-radius:2em;
 box-sizing: border-box;
 text-decoration:none;
 font-family: 'monadregular';
 font-weight:300;
 color:#FFFFFF;
 text-shadow: 0 0.04em 0.04em rgba(0,0,0,0.35);
 text-align:center;
 transition: all 0.2s;
}

a.button:hover{
 border-color: rgba(255,255,255,1);
}
@media all and (max-width:30em){
 a.button{
 display:block;
 margin:0.2em auto;
 }
} 

#blank {
	height: 20px;
	overflow: auto;
}

#blanknode {
	height: 200px;
	overflow: auto;
}

#title {
  text-align: center;
  font-size: 15px;
  color: white;
  font-family: 'monadregular';
  font-weight: normal;
  font-style: normal;
  }
  
  /* Node Float */

@keyframes float {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-20px);
	}
	100% {
		transform: translatey(0px);
	}
}

.node {
	width: 150px;
	height: 180px;
	float: left;
	position: fixed;
	top: 30px;
	left: 45px;
	overflow: hidden;
	transform: translatey(0px);
	animation: float 6s ease-in-out infinite;
	img { width: 100%; height: auto; }
}  


.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 50px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 6px 0;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -25px;
  font-size: 10px;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}