body {
	font-family: Arial, sans-serif;
}

.background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #020202;
	opacity: 1;
	z-index: -1;
}

.container {
	max-width: 800px;
	margin: 0 auto;
	padding: 50px 0;
	position: relative;
	z-index: 1;
	text-align: center;
	color: #ad7d4f;
}

.logo{
     display: block;
    margin: 0 auto;
    animation: zoom 10s infinite;
    
}

@keyframes zoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}





h1 {
	margin-top: 50px;
	font-size: 48px;
}

p {
	font-size: 24px;
}

.countdown {
	display: flex;
	justify-content: center;
	margin-top: 50px;
	font-size: 48px;
}

.countdown div {
	background-color: #333;
	color: #fff;
	padding: 20px;
	margin: 0 10px;
	border-radius: 10px;
	box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

@media only screen and (max-width: 768px) {
	h1 {
		font-size: 36px;
	}

	p {
		font-size: 20px;
	}

	.countdown div {
		padding: 15px;
		margin: 0 5px;
		font-size: 36px;
	}
}
