@font-face {
  font-family: 'ABChanel';
  font-style: normal;
  src: url(ABChanelCorpo2022-Regular.otf);
}

html, body {
    height: 100%;
    overflow: hidden;
    position: fixed;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
	margin:0;
	background-color:#daabaa;
	font-family:ABChanel;
	color:#000000;
}

a {
	text-decoration:none;
	color:inherit;
}

a:hover {
	text-decoration:underline;
	color:inherit;
}

.mainContainer {
	width:100%;
	margin:0 auto;
}

hr {
	background-color:white;
	max-width:500px;
	width:100%;
	margin:20px auto;
	
}

h1 {
	font-family: ABChanel;
	font-size:40px;
	font-weight:bold;
	line-height: 40px;
}

h2 {
	font-size:24px;
	font-weight:normal;
	line-height: 30px;
}


.red {
	color:#00b0bf;
}

.hidden {
	display:none;
}

.container {
	display: grid;
    grid-template-rows: auto 1fr auto; /* header | centro | footer */
    min-height: 100%;
	text-align: center;
}

.header {
	padding-top:60px;
}

.header img {
	width:90%;
	max-width:405px;
}


.centro {
	display: flex;
	justify-content: center; /* centro orizzontale */
	align-items: center;     /* centro verticale */
	flex-direction: column;  /* elementi uno sotto l’altro */
	height: 100%;    
	font-size:30px;
	line-height:40px;
	color:#931d36;
	text-transform: uppercase;
	padding:0 20px;
	box-sizing: border-box;
	/*font-variant-numeric: tabular-nums;  /* standard moderno */
	
  /*font-feature-settings: "tnum"; */
}

.countdown {
	font-size:25px;
	letter-spacing:2px;
}

.footer img {
	width:100%;
}

.mobileOnly {
	display:none;
}