@import url('https://fonts.googleapis.com/css?family=Press+Start+2P');

body {
	font-family: 'Press Start 2P';
	font-size: 16px;
	background: black;
	color: whitesmoke;
	width: 100vw;
	height: 100vh;
}

header {
	text-align: center;
	padding: 20px 5px;
	height: 80px;
	box-sizing: border-box;
	border-bottom: 1px solid whitesmoke;
}

.title{
	font-size: 1.1em;
	margin-bottom: 10px;
	display: inline-block;
}

.subtitle{
	font-size: 0.7em;
}

.subtitle::after{
	content: "|";
	animation: 0.8s blinker infinite;
}

.hi-gif {
	display: inline-block;
	width: 20px;
}

#presentation {
	width: 100vw;
	height: calc(100vh - 120px);
	display: flex;
	align-items: center;
	justify-content: center;
}

#presentation figure {
	padding-bottom: 40px;
}

.start-button {
	text-align: center;
	display: inline-block;
    font-weight: bold;
    padding: 10px;
    background-color: whitesmoke;
    text-shadow: -1px -1px black, 1px 1px white;
    color: gray;
	border-radius: 7px;
    box-shadow: 0 .2em gray; 
    cursor: pointer;
	animation: 0.8s blinker infinite;
}

.bio-gif {
	width: 100vw;
	max-height: calc(100vh - 40px);
	max-width: 1000px;
}

.presentation-container {
	position: fixed;
	height: 100vh;
	width: 100vw;
	background-color: rgba(0,0,0,0.8);
	z-index: 2;
	top: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.continue {
	background-color: black;
}

.footer {
	font-size: 0.9em;
	text-align: center;
	position: fixed;
	padding: 13px;
	width: 100vw;
	bottom: 0;
	height: 40px;
	box-sizing: border-box;
	border-top: 1px solid whitesmoke;
	z-index: 1;
}

@keyframes blinker {  
	50% { opacity: 0; }
}