*{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body{
	background-color: #8a1538;
	color: #EEEEE4;
}

body,html{
	height: 100%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type=number] {
	-moz-appearance: textfield;
}

.error{
	color: #DE0006;
}

.succes{
	color: #26DE00;
}

.button{
	background-color: rgba(215,215,215,1);
	position: relative;
	text-align: center;
	border: solid 1px;
	border-radius: 5px;
	box-shadow: 1px 1px 1px 1px #2e2e2e;
	padding: 2% 1%;
	font-size: 0.9em;
	font-weight: bold;
	cursor: pointer;
}

.button:hover{
	background-color: rgba(150,150,150,0.5);
}

.button:active{
	top: 2px;
	box-shadow: rgb(88, 88, 88) 0px 0px 0px 0px;
}

@media(max-width: 860px){
	.button{
		font-size: 0.7em;
	}
}

@media(max-width: 500px){
	.button{
		font-size: 0.6em;
	}
}

@media(max-width: 300px){
	.button{
		font-size: 0.5em;
	}
}