@import url('https://fonts.googleapis.com/css?family=Saira');

html, body {
	max-height: 100%;
	margin: 0;
	padding: 0;
	background-color: #111;
	overflow: hidden;
}

#gitDisplay {
	position: absolute;
	right: 0;
	white-space: nowrap;
}

.container {
	display: inline-flex;
    flex-direction: column;
}

.box {
	width: 2.2vw;
	height: 2.2vw;
	margin: 2px;
	animation: slide-down 1s backwards cubic-bezier(.28,1.92,.61,1.07), fade-in 1s backwards ;
	transition: .5s;
}

@keyframes fade-in {
	from {opacity: 0; }
	to {opacity: 1;}
}

@keyframes slide-down {
	from {transform: translateY(-200px);}
	to {transform: translateY(0)}
}

.cont-anim {
	animation: slide-up-down 1s cubic-bezier(.28,1.92,.61,1.07);
}

@keyframes slide-up-down {
	from {transform: translateY(0);}
	50% {transform: translateY(100px);}
	to {transform: translateY(0)}
}

.subtitle {
	position: absolute;
    font-size: 4vw;
    color: #fff;
    font-family: 'Ubuntu Mono', 'Consolas', monospace;
    bottom: -2vw;
    margin-left: 4vw;
    opacity: 0;
    pointer-events: none;
}

.subtitle-fade-in {
	animation: fade-in 1s forwards;
    animation-delay: 1s;
}

.header {
	position: relative;
	min-height: 12vw;

}

.content {
	background-color: #333;
	height: 100%;
	margin-top: 200px;
}