html {
	font-size: 56.25%
}

@media (min-width:250px) {
	.about_us {
		max-width: 300px;
	}
}

@media (min-width:400px) {
	html {
		font-size: 68.75%
	}
	
	.about_us {
		max-width: 400px;
	}
}

@media (min-width:600px) {
	html {
		font-size: 75%
	}
	
	.about_us {
		max-width: 500px;
	}
}

@media (min-width:1800px) {
	html {
		font-size: 81.25%
	}
	
	.about_us {
		max-width: 600px;
	}
}

@media (min-width:2200px) {
	html {
		font-size: 87.5%
	}
}


body {

	overflow-anchor: none;
	font-size: 1.4rem;
	font-weight: 300;
	line-height: 1.6;
	font-family: "Open Sans", sans-serif;
	color: #fff
}

button {
	border: none;
	background-color: inherit;
	font: inherit;
	color: inherit;
	-webkit-tap-highlight-color: transparent
}

button:focus {
	outline: 0
}

button::-moz-focus-inner {
	border: 0
}

.app-page {
	min-height: 100vh
}

.nsfw-warning {
	margin: 4rem 0;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	text-align: center;
	font-size: 1.6rem
}

.nsfw-warning__buttons {
	font-size: 1.6rem;
	margin-top: 3rem
}

.nsfw-warning__accept-button {
	cursor: pointer;
	background-color: #e30b5c;
	padding: 1rem 1.6rem;
	border-radius: 5px;
	transition: box-shadow .4s, background-color .2s
}

.nsfw-warning__accept-button:active,
.nsfw-warning__accept-button:focus,
.nsfw-warning__accept-button:hover {
	background-color: #d00a54
}

.nsfw-warning__accept-button:active {
	-webkit-transform: translateY(1px);
	transform: translateY(1px)
}

.nsfw-warning__reject-button {
	cursor: pointer;
	margin-left: 2rem;
	position: relative;
	padding: .1rem .4rem
}

.nsfw-warning__reject-button:after {
	transition: border-color .2s;
	content: "";
	border-bottom: 1px solid #fff;
	position: absolute;
	width: 100%;
	left: 0;
	right: 0;
	bottom: 0
}