::-moz-selection {}
::selection  {}
@font-face {
	font-family: GeosansLight;
    src: url('GeosansLight.woff') format('woff');
}
@font-face {
	font-family: Comicsans;
    src: url('Comicsans.woff') format('woff');
}

body {
	background: rgb(32,32,32);
	margin: 0;
	font-family: GeoSansLight;
	font-size: 3.75vh;
	width: 100vw;
	color: white;
	overflow: hidden;
	-webkit-user-select: none;
	-moz-user-select: none;
}
* {
	line-height: 1.5em;
}
header {
	width: 100vw;
	height: 100vh;
	background-color: black;
	position: absolute;
	z-index: 1;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	transition: 3s all ease-in-out;
	bottom: 0;
}
#logo {
	font-size: 20vh;
	animation: sizzle 2s infinite;
}

#description, #information {
	font-size: 5vh;
}
#start {
	font-size: 10vh;
	margin-bottom: 5vh;
}
#title {
	position: fixed;
	top: 3.75vh;
	width: 100vw;
	text-align: center;
	font-size: 7.5vh;
	background-color: rgba(0,0,0,0.5);
	animation: 2s sizzle infinite;
}
@keyframes sizzle {
	0% {
	    text-shadow: 0 0 0.4vh white;
	}
    40% {
        text-shadow: 0 0 0.75vh white;
    }
	45% {
        text-shadow: 0 0 0.4vh white;
    }
	50% {
        text-shadow: 0 0 0.75vh white;
    }
	85% {
	  	text-shadow: 0 0 0.75vh white;
	}
    90% {
        text-shadow: 0 0 0.4vh white;
    }
	95% {
        text-shadow: 0 0 0.75vh white;
    }
    100% {
        text-shadow: 0 0 0.4vh white;
    }
}
#world {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	width: 60vh;
	height: 60vh;
	position: fixed;
	left: calc(50vw - 33.75vh);
	top: 16.25vh;
	background-image: url('world.svg');
	background-size: 67vh 67vh;
	background-position: 0.5vh top; 
	padding: 3.75vh;
}
#world span {
	margin: 10vh;
}
#core {
	position: absolute;
	left: calc(50vw - 10vh);
	top: 40vh;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 20vh;
	height: 20vh;
}
#theodore, #alphonse, #mother, #police, #people {
	display: inline-block;
	width: 1vh;
	height: 1vh;
	border-radius: 50%;
	position: absolute;
}
#theodore {
	background-color: rgb(0,159,107);
	left: 44.6280vh;
	bottom: 60.8639vh;
}
#people {
	background-color: rgb(0,135,189);
	left: 54.5284vh;
	top: 54.0284vh;
}
#mother {
	background-color: rgb(196,2,51);
	left: 45.0280vh;
	top: 60.7639vh;
}
#alphonse {
	background-color: rgb(255,211,0);
	left: calc(50vw - 0.25vh);
	top: 19.625vh;
}
#police {
	background-color: black;
	right: 60.8639vh;
	top: 44.6105vh;
}
footer {
	position: absolute;
	bottom: 0;
	text-align: center;
	width: 100vw;
}
#text {
	display: inline-block;
	text-align: center;
	background-color: rgba(0,0,0,0.5);
	bottom: 3.75vh;
	margin: 3.75vh;
	padding: 0 1.5vh;
}
#choices {
	display: flex;
	justify-content: space-around;
	color: rgba(255,255,255,0.5);
}
#start, #choices span {
	display: inline-block;
	transition: 0.2s all ease-in-out;
}
#start:hover, #choices span:hover {
	color: rgb(255,211,0);
	cursor: pointer;
}
#start:active, #choices span:active {
	transform: scale(0.95);
}
#flash, #flash2, #flash3 {
    position: fixed;
	top: 0;
	width: 100vw;
	height: 100vh;
	pointer-events: none;
}
@keyframes flash {
	0% {
	    background-color: white;
	}
    100% {
        background-color: rgba(255,255,255,0);
    }
}
@keyframes shake {
	0% {
	    transform: translateY(-0.1vh);
	}
    100% {
        transform: translateY(0.1vh);
    }
}
@keyframes collapse {
	0% {
		margin-left: -0.2vh;
	}
    100% {
		margin-left: 0.2vh;
    }
}
