*{
	box-sizing: border-box;
}

body{
	background-image: url("snow-3.jpg");
	background-size: cover;
	background-position: center center;
	display: flex;
	flex-direction: column;
	align-items: center;
	color: white;
	min-height: 100vh;
	font-family: "Poppins", sans-serif;
	margin: 0;
	
}

h1{
	font-weight: normal;
	font-size: 4rem;
	margin-top: 7rem;
}

h2{
	font-size: 4rem;
}

.countdown-container{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.big-text{
	font-weight: bold;
	font-size: 6rem;
	line-height: 1;
	margin: 0 2rem;
}

.countdown-el {
	text-align: center;
}

.countdown-el span{
	font-size: 1.4rem;
}



p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

#footer {	
	position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: black;
    color: white;
    text-align: center;
}