html,
body {
	height: 100%;
	background-color: #B11E26;
}

body {
	display: -ms-flexbox;
	display: flex;
	color: rgb(255, 255, 255);
	text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
	box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
	overflow: hidden;
}

input,
label {
	color: rgb(0, 0, 0, .5);
}

main {
	width: 100%;
	max-width: 330px;
	margin-top: 15px;
	margin-left: auto;
	margin-right: auto;
    overflow-x: auto;
}

input {
	margin-bottom: 10px;
}

#navbars{
	position: fixed;
	margin-left: 10px;
	z-index: 1;
}


@media (max-width: 480px){
	#navbars{
		position: absolute;
	}	
}

@media (max-height: 560px){
	body{
	  	overflow-y: scroll;
	  	box-shadow: none;
	}
	main{
	  	margin-top: 1%;
	  	margin-bottom: 5%;
	}
}