@import url('https://fonts.googleapis.com/css?family=Ubuntu+Condensed|Lora|Open+Sans+Condensed|Jura|PT+Sans+Narrow|Pacifico|Russo+One|Philosopher|Marmelad|Seymour+One|Lobster');
		
body {
	font-family: 'Ubuntu Condensed', sans-serif;
	font-size: 22px;
}
	
h1, h2, h3, h4, h5 {
	font-family: 'Philosopher', serif;
}

.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}

.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#myButton {
  display: inline-block;
  background-color: #FF9800;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#myButton::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  line-height: 40px;
  color: #fff;
}
#myButton:hover {
  cursor: pointer;
  background-color: #333;
}
#myButton:active {
  background-color: #555;
}
#myButton.show {
  opacity: 1;
  visibility: visible;
}

