body {
	margin: 0;
	background: rgb(237,245,247);
	background: radial-gradient(circle, rgba(237,245,247,1) 0%, rgba(0,138,148,1) 100%);
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	line-height: 24px;
	overscroll-behavior: none;
}

h1{
	/* align-self:flex-start; */
	text-align: center;
	font-size:2vw;
	/* border:2px solid red; */
}

a#button-preorder {
	display: block;
	/* background:url(./assets/button-preorder.svg) 50% 50% no-repeat; */
	width:50vw;
	/*height:12.914568vw;*/
	max-width:500px;
	pointer-events: all;
	transition: 300ms ease all;
	/* align-self: flex-end; */
}
a#button-preorder svg{
	transition: 300ms ease all;
}
a#button-preorder span{
	opacity: 0;
}

a#button-preorder svg .bg{
	fill: #C62C27;
}
a#button-preorder svg .text{
	fill: #fff;
}

a#button-preorder:hover svg .bg{
	fill: #da6864;
}
a#button-preorder:hover svg .text{
	fill: #fff;
}

#container {
	position: absolute;
	top: 0px;
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	text-align: center;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	z-index: 1; /* TODO Solve this in HTML */
	display: flex;
	align-items: center;
	/* align-content:space-between; */
	justify-content: space-between;
	flex-direction: column;
	height:100%;
	/* border:2px green solid; */
	padding-top:10vw;
	padding-bottom:10vw;
	/* flex-direction: row; */
}

a, button, input, select {
	pointer-events: auto;
}

.dg.ac {
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	z-index: 2 !important; /* TODO Solve this in HTML */
}
