body {
	font-family: 'Roboto', serif !important;
	font-weight: 100 !important;
	font-style: normal !important;
	font-size: 48px;
}

.pull-top {
	top: 0;
	position: absolute;

}

.right {
	right: 0;
}

#child {
	position: relative;
	top: 50%;
}

#parent {
	display: table;
}

#child {
	display: table-cell;
	vertical-align: middle;
}

.location-container {
	font-family: 'VT323', serif !important;
	font-style: normal !important;
	font-size: 48px;
	position: absolute;
	top: 80%;
	left: 0;
}

.blink_me {
	animation: blinker 1s linear infinite;
}

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