:root {
	--blue: #1e90ff;
	--blueTransp: rgba(30, 144, 255,0.2);
	--bianco: #fff;
	--arancio: #a77a3f;
	--sfondoNero: #1a1810;
	--imgDim_XXL: 24rem;
	--imgDim_XL: 16rem;
	--imgDim_L: 12rem;
}
  
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Voyage";
}

html, body { background: var(--sfondoNero) }

.container {
	width: 100%;
	height: 100vh;
}

.column { height: 100vh } /*width: 50%;*/

.left {
	position: relative;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 20px;
}

.right {
	display: flex;
	padding: 120px 0;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

.img-1 { background: url("../images/coverLiquidSeason-smokeChills2.webp")  }
.img-2 { background: url("../images/coverLiquidSeason-sharks.webp") }
.img-3 { background: url("../images/coverLiquidSeason-norollbacks.webp") }
.img-4 { background: url("../images/coverLiquidSeason_honey.webp") }
.img-5 { background: url("../images/coverLiquidSeason_theLamb.webp") }

.img {
	margin: 1em;
	z-index: 2;
	width: var(--imgDim_XXL);
	height: var(--imgDim_XXL);
	background-size: cover;
	background-repeat: no-repeat 50% 50%;
}

.img:hover{ filter: none } 

.header {
	color: var(--bianco);
	text-transform: uppercase;
	font-size: 40px;
	z-index: 1;
}

.sfondoSfocBlu{
	background-color: var(--blueTransp);
	box-shadow: 0px 0px 8em 8em var(--blueTransp);
}

.header h1 { position: relative }

.ml12 .letter {
	display: inline-block;
	line-height: 1em;
	word-break: break-all;
}

/* * * * *  * * * *  custom  * * * *  * * * * */

#mainInfos{ 
	display: none;
	/*color: var(--arancio);*/
	font-size: xx-large;
}

.link{
	text-align: center;
	z-index: 5;
	margin-bottom: 3em;
}

/* Style the video: 100% width and height to cover the entire window */
video{/*#videoBackground {*/
	position: fixed;
	left: 0;
	top: 0;
	/*min-width: 15%;*/
	/*height: 100vh;*/
	width: 100%;
	z-index: 0;
	/*mix-blend-mode: difference; */
}

.header > p { padding-bottom: 2em; }

.tracksHeader{
	text-transform: uppercase;
	color: var(--bianco);
	z-index: 2;
}

.desatura{ filter: grayscale(100%) }

#countdownText{
	/*font-size: 0.7em; */
	font-style: bold;
	color: lightgray;
}

.header.sfondoSfocBlu {
	padding: 3rem;
}

/* * * * *  LINK EFFECT MOVING SQUARE depen.io/samvdh/pen/MmZzyR * * * * */
.button{
	text-decoration: none;
	color: white;
	font-weight: bold;
	font-size: 20px;
	position: relative;
	padding: 10px;
	z-index: 6;
}
a.button.one:before, a.button.one:after{
	content: '';
	position: absolute;
	width: 10px;
	height: 10px;
	transition: all 0.3s ease;
}
a.button.one:before{
	top: -2.5%;
	left: -1%;
	border-top: 2px solid white;
	border-left: 2px solid white;	
}
a.button.one:after{
	bottom: -2.5%;
	right: -1%;
	border-bottom: 2px solid white;
	border-right: 2px solid white;
}
a.button.one:hover:before, a.button.one:hover:after{
	width: 100%;
	height: 100%;
	transition: all 0.3s ease;
}
