/* IMPORT FONTS */
@font-face {
	font-family: 'MarselisPro';
	src: url('../fonts/Marselis-Pro.otf');
	font-weight: normal;
}
@font-face {
	font-family: 'MarselisPro';
	src: url('../fonts/Marselis-Pro-Bold.otf');
	font-weight: Bold;
}
@font-face {
	font-family: 'MarselisSerif';
	src: url('../fonts/Marselis-Serif-OT.ttf');
	font-weight: normal;
}
@font-face {
	font-family: 'MarselisSerif';
	src: url('../fonts/Marselis-Serif-OT-Black.ttf');
	font-weight: Bold;
}

/* GENERAL DOCUMENT */

* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-family: MarselisPro;
}
html, body {
    height: 100%;
}
body {
	background: rgb(47,6,3);
	background: linear-gradient(90deg, rgba(47,6,3,1) 0%, rgba(66,11,8,1) 50%, rgba(58,7,5,1) 100%);
}
.background {
	min-height: 100%;
    /*height: auto !important;
    height: 100%;*/
	background-image: url(../img/page/FONS_1920x900.png);
	background-size: 100%;
	background-position: top center;
	background-repeat: no-repeat;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-right: 2rem;
    padding-left: 2rem;
}
.header, 
.title, 
.description {
	color: white;
	text-align: center;
}
.header {
	font-family: MarselisSerif;
	font-size: 1.5rem;
	margin-top: 1rem;
}
.title {
	font-family: MarselisSerif;
	font-weight: bold;
	font-size: 4rem;
	line-height: 4.3rem;
	text-shadow: 0px 0px 26px #ffffff9c;
	margin-top: 1rem;
	margin-bottom: 1rem;
}
.description {
	font-family: MarselisPro;
	font-size: 1.3rem;
	margin-bottom: 1.2rem;
}

.AOLogo > img {
	width: 9rem;
}
.scratch > img {
	width: 18rem;
}
.form {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.form > input {
	background-color: #DEC6BD;
	height: 2rem;
	width: 12rem;
	padding: 0 .5rem;
	border: none;
	font-family: MarselisPro;
	font-weight: bold;
	text-align:  center;
	border: 2px solid #c8a15f;
	border-radius: 2px;
	margin-bottom: 20px;
} 
.form > input:hover {
	border: 2px solid #625848;
}
.form > button {
	width: 6rem;
	color: #9d1919;
	border-radius: 2px;
	height: 2.2rem;
	cursor: pointer;
	border: none;
	margin-top: .5rem;
	font-family: MarselisPro;
	font-weight: bold;
	font-size: 1rem;
	background-color: #e9e9ed;
}

.form > button:hover {
	background-color: #ffffff;
}

/*CANVAS*/

#bridge {
	display: none;
	margin: 0 auto;
  	/*background-image: url('../img/cupon/Rascar-Daurat.png');*/
	/*background-image: -webkit-image-set(url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/4273/calgary-bridge-1943.jpg') );*/
	background-size: 100% 100%;
	width: 100%;
	height: 100%;
	max-width: 398px;
	max-height: 225px;
	/*height: auto;*/
	cursor:  crosshair;
	cursor: url(../img/page/circular-cursor.png) 32 32, crosshair;
}

/*END CANVAS*/

@media screen and (max-width: 2200px) {
	.background {
		background-image: url(../img/page/FONS_1200x900.png);
	}
}

@media screen and (max-width: 1900px) {
	.background {
		background-image: url(../img/page/FONS_700x800.png);
	}
}

@media screen and (max-width: 1200px) {
	.background {
		background-image: url(../img/page/FONS_600x900.png);
	}
}

@media screen and (max-width: 800px) {
	.background {
		background-image: url(../img/page/FONS_376x800.png);
	}
}

@media screen and (max-width: 450px) {
	.background {
		padding-left: 1rem;
		padding-right: 1rem;
	}
	.title {
		font-size: 3.5rem;
	}
}

@media screen and (max-width: 400px) {
	.background {
		padding-left: 1rem;
		padding-right: 1rem;
	}
}

@media screen and (max-width: 380px) {
	.title {
		font-size: 3rem;
	}
}

@media screen and (max-width: 320px) {
	.title {
		font-size: 2.5rem;
	}
}