html {
	margin: 0;
	padding: 0;
	font-family: 'roboto';
	overflow: hidden;
	width: 100%;
	height: 100%;
	font-weight: 200;
	color: #FE617C;
}

body {
	background-color: #262230;
	height: 100%;
    overflow-y: scroll;
	width: 100%;
	position: relative;
}

p {
	margin: 0 auto 1rem;
}

p:last-child {
	margin: 0 auto;
}

#video-viewport {
	position: absolute;
	z-index: -1;
	opacity: 0.3;
}

#pattern {
	background: rgba(0, 0, 0, 0) url('../images/dot.png') repeat top left;
	position: fixed;
	bottom: 0;
	top: 0px;
	left: 0px;
	right: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	z-index: 1;
	pointer-events: none;
}

#container {
	display: flex;
	min-height: 100vh;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 2rem 1rem;
}

.logo {
	display: block;
	height: 100px;
	margin-bottom: 2rem;
}

.logo img {
	width: 100%;
	height: 100%;
}

.word {
	font-weight: 200;
	font-size: 80px;
	color: #FE617C;
}

.digit {
	font-weight: 200;
	font-size: 80px;
	color: #FE617C;
}

#title {
	/*margin-top: 60px;*/
	font-weight: 300;
	text-align: center;
	font-size: 2.5rem;
	color: #FE617C;
	margin-bottom: 2rem;
	font-weight:400;
}

#title p {
	font-size: 2rem;
}

#subtitle {
	text-align: center;
	font-size: 1.25rem;
	color: #b9b1c9;
	font-weight: 300;
}

#subtitle p {
	
}

#timer {
	text-align: center;
}

#quit {
	position: absolute;
	right: 30px;
	top: 20px;
	font-weight: 300;
	font-size: 30px;
	color: #FE617C;
	cursor: pointer;
	z-index: 10;
	display: none;
}

#twitter {
	position: absolute;
	left: 30px;
	bottom: 20px;
	z-index: 10;
	cursor: pointer;
}

#social {
	margin-top: 2rem;
	padding-top: 2rem;
	text-align: center;
	border-top: 2px solid rgba(255, 255, 255, 0.05);
}

#action {
	margin: 1rem 0;
	text-align: center;
}

.return-button {
	color: white;
	background: rgba(255, 255, 255, 0.05);
	font-weight: 400;
	box-shadow: none;
}

.return-button:hover {
	background: rgba(255, 255, 255, 0.1);
}

.social-logo {
	height: 25px;
	margin: 10px;
}

.custom-btn {
	height: 60px;
	margin: auto;
	text-align: center;
	padding-top: 9px;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 400;
	cursor: pointer;
	-webkit-transition: 300ms ease;
	-moz-transition: 300ms ease;
	-ms-transition: 300ms ease;
	-o-transition: 300ms ease;
	transition: 300ms ease;
	max-width: 300px;
	border: 2px #FE617C solid;
	color: #FE617C;
	background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, #C8354E 50%);
	background-size: 100% 200%;
	background-position:left top;
}

.custom-btn:hover {
	background-position:left bottom;
	color: #26262C;
}

.maintenance-logo {
	/* height: rem; */
	width: 8rem;
}

@media(max-width: 900px) {
	body {
		padding: 15px;
	}

	#subtitle {
		font-size: 18px;
	}

	#subtitle p {
		padding: 10px 20px;
	}
}