html,body{
	overflow-x:hidden;
	height: 100%;
	margin: 0;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: Montserrat, sans-serif;
	background: #f2f0ec;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.container {
	background: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	-webkit-backdrop-filter: blur(10px);
	border-radius: 15px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	padding: 60px 40px;
	max-width: 600px;
	width: 100%;
	text-align: center;
	z-index:2;
	position:relative
}

.icon img{
	margin-bottom: 20px;
	-webkit-filter: invert(100%); 
	filter: invert(100%);
	width:100%;
	max-width:300px;
	height:auto
}

h1 {
	color: #000;
	font-size: 28px;
	margin: 20px auto;
	font-weight: 400;
}

.message {
	color: #4a5568;
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 30px;
}

.old-site {
	color: #e53e3e;
	font-weight: 600;
}

.new-site {
	/* color: #38a169; */
	color: #b1876f;
	font-weight: 600;
}

.countdown-container {
	margin: 40px 0;
}

.countdown-label {
	color: #000;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 15px;
}

.countdown {
	font-family: Taviraj, serif;
	font-size: 72px;
	font-weight: 700;
	color: #b1876f;
	line-height: 1;
	margin-bottom: 10px;
}

.countdown-text {
	color: #b1876f;
	font-size: 16px;
}

.button {
	display: inline-block;
	background:#000;
	color: white;
	text-decoration: none;
	text-transform:uppercase;
	padding: 18px 40px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	transition: all 0.5s ease;
}

.button:hover {
	background:#b1876f
}

.button:active {
	transform: translateY(0);
}

.cuivre,.inox{
	position:absolute;
	z-index:1;
	top:0;
	right:0;
	bottom:0;
	left:0;
	margin:auto;
	width:100%;
	height:auto;
	max-width:400px
}
@keyframes floatleft{0%{transform:translate(-20px, 0px) rotate(-5deg) }25%{transform:translate(0px, -15px) rotate(-10deg) }50%{transform:translate(-10px, 15px) rotate(-8deg) }75%{transform:translate(0px, -15px) rotate(-10deg) }100%{transform:translate(-20px, 0px) rotate(-5deg) }}
@keyframes floatright{0%{transform:translate(20px, 0px) rotate(5deg) }25%{transform:translate(0px, 15px) rotate(10deg) }50%{transform:translate(10px, -15px) rotate(8deg) }75%{transform:translate(0px, 15px) rotate(10deg) }100%{transform:translate(20px, 0px) rotate(5deg) }}
.cuivre{
	left:800px;
	top:20%;
	animation:floatleft 30s ease-in-out infinite
}
.inox{
	right:800px;
	bottom:20%;
	animation:floatright 30s ease-in-out infinite
}
@media (max-width: 640px) {
	.container {
		padding: 40px 30px;
	}
	.icon img{
		max-width:200px;
	}
	h1 {
		font-size: 20px;
		margin:0 auto 20px
	}
	.message {
		font-size: 14px;
	}
	.countdown-container{
		margin:20px 0
	}
	.countdown-label{
		font-size:12px
	}
	.countdown {
		font-size: 56px;
	}
	.button {
		padding: 16px 35px;
		font-size: 14px;
	}
	.cuivre,.inox{
		display:none
	}
	.old-site,.new-site{
		display:block
	}
}
