*{
	margin: 0;
	padding: 0;
}
body{
	background: white;
	font-family: oswald;
	text-align: center;
}
.top{
  position: fixed;
  z-index: 2;
}
div.spacer{
  font-size: 0; 
  height: var(--spacer-height);
  line-height: 0;
}
.image-box {
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)) , var(--image-url);
  background-size: cover;
  position: absolute;
}
#topbar{
  position: fixed;
  width: 100%;
  z-index: 1;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0,0,0,0.3));
}
#topname{
  font-family:oswald;
  float:left;
  margin-left: 0.5vw;
  color: rgb(255, 251, 251);
}
.dropdown{
  text-transform: uppercase;
  padding-top: 10px;
  width: 9vw;
	height:40px;
  text-align: center;
  margin: 0 auto;
	float: right;
  right:0px;
  font-size: 1.1vw;
}
#horizontal-spacer{
  padding-top: 10px;
  width: 37vw;
	height:40px;
  margin: 0 auto;
	float: right;
  right:0px;
  font-size: 1.1vw;
}

/*********************************************/

.dropdown-button a, a:visited, a:hover, a:active{
	color: white;
	text-decoration: none;
}

.dropdown:hover{
  background: rgba(0, 0, 0, 0.3);
}
.dropdown ul{
	list-style-type: none;
}
.dropdown ul li{
	padding: 10px 5px;
	display: none;
	opacity: 0;
  background: rgba(0, 0, 0, 0.2);
  color: white;
	text-decoration: none;
}
.dropdown ul li a, a:visited, a:hover, a:active{
  color: white;
	text-decoration: none;
}
.dropdown:hover li{
	animation: load 1s forwards;
	display: block;
}
@keyframes load{
	0%{
		transform: translateY(25px);
	}
	100%{
		opacity:1;
		transform: translateY(16px);
	}
}

.dropdown li:first-child{
	animation-delay: 0;
}
.dropdown li:nth-child(2){
	animation-delay: 0.1s;
}
.dropdown li:nth-child(3){
	animation-delay: 0.2s;
}
.dropdown li:last-child{
	animation-delay: 0.3s;
}

.dropdown li:first-child:hover{
	background: rgba(0, 0, 0, 0.3);
}
.dropdown li:nth-child(2):hover{
	background: rgba(0, 0, 0, 0.3);
}
.dropdown li:nth-child(3):hover{
	background: rgba(0, 0, 0, 0.3);
}
.dropdown li:last-child:hover{
	background: rgba(0, 0, 0, 0.3);
}

/*******************************************/

@import url('https://fonts.googleapis.com/css?family=Space+Mono');
 .wrapper {
	 display: flex;
	 height: 100vh;
	 align-items: center;
	 box-sizing: border-box;
}
 .card {
	 margin: 0 3vw;
	 width: 25vw;
	 flex-shrink: 0;
	 padding: 2vw;
	 box-sizing: border-box;
	 position: relative;
	 border-radius: 3px;
	 border: 2px solid #000;
	 display: flex;
	 justify-content: space-between;
	 flex-direction: column;
	 box-shadow: 4px 4px 0 rgba(0, 0, 0, .1);
   background-color: white;
}
 .card-title {
	 transition: 0.3s;
	 text-align: center;
	 font-family: 'Space Mono', monospace;
	 margin: 2vw 0 0;
	 font-size: 2.8vw;
	 opacity: 0;
	 transform: scale(0.7);
   color: black;
}
 .card:last-child:after {
	 content: "";
	 width: 6vw;
	 position: absolute;
	 height: 100%;
	 right: -6vw;
	 top: 0;
}
 .card img {
	 max-width: 70%;
	 max-height: 50vh;
	 opacity: 0;
	 margin: auto;
	 display: block;
	 transition: 0.35s;
	 transform: rotate(6deg) translate(0, 40px) scaleY(0.6);
}
 .card.isVisible img {
	 max-width: 100%;
	 opacity: 1;
	 transform: none;
}
 .card.isVisible .card-title {
	 opacity: 1;
	 transform: none;
	 transition-delay: 0.1s;
}
 .card:first-child {
	 margin-left: 6vw;
}
 
