html {
	background: rgb(159,75,159);
}

a {
    text-decoration: none;
}
body {
	background-image: rgb(159,75,159);
	background-image: linear-gradient(135deg, rgba(159,75,159,.5) 0%, rgba(154,89,214,6) 100%);
	min-height: 100vh;
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	overflow-x: hidden;
}
main {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
}
h1 {
	font-size: 3.3rem;
	margin: 13px 0;
	color: white;
	letter-spacing: -1px;
	text-transform: uppercase;
}
p {
	font-size: 1.25rem;
	margin: 15px 0 0 0;
	color: white;
    line-height: 30px;
}

a {
	color: white;
}

.main__content {
	text-align: center;
}
.countdown {
	display: flex;
	justify-content: center;
	margin: 50px 0 0 0;
}
.countdown__number {
	padding: 16px 10px;
	margin: 0 20px;
	width: 80px;
	background: white;
	border-radius: 10px;
	text-align: center;
}
.countdown__number span {
	font-size: 2.5rem;
	font-weight: 800;
	color: rgba(154,89,214,1);
}
.countdown__number p {
	margin: 0;
	font-size: .8rem;
	text-transform: uppercase;
	color: rgba(154,89,214,1);
}

.main__button {
	margin: 35px 0 0 0;
}
button {
	padding: 10px 25px;
	background: transparent;
	cursor: pointer;
	outline: none;
	border-radius: 20px;
	font-weight: 600;
	border: 2px solid white;
	color: white;
	transition-duration: 150ms;
    margin: 0 5px;
	font-family: 'Montserrat', sans-serif;
}
button:hover {
	background: #fff;
	color: rgba(154,89,214,1);
}

footer {
	position: absolute;
	bottom: 20px;
	left: 0;
	width: 100%;
}
footer p {
	font-size: 12px;
	color: rgba(255,255,255,.8);
	text-align: center;
}
footer a {
	color: white;
}

section#cookieDialog {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.85);
	display: flex;
	align-items: center;
	justify-content: center;
}
.cookieDialog__content {
	text-align: center;
}
.cookieDialog__content button {
	margin: 0 10px;
}
.cookieDialog__content p {
	font-size: 14px;
	width: 70%;
	margin: 0 auto 20px auto;
	display: block;
}


i {
	margin-right: 3px;
}

@media(max-width: 600px) {
	.countdown__number {
		margin: 0 5px;
	}
	h1 {
		font-size: 2.8rem;
	}
	p {
		font-size: 1rem;
	}
	.countdown__number {
		padding: 16px 3px;
	}
	.countdown__number span {
		font-size: 1.8rem;
	}
	.countdown__number p {
		font-size: .6rem;
	}
	.cookieDialog__content p {
		width: 85%;
	}
	footer {
		position: relative;
	}
}

@media only screen and (max-width: 430px) and (max-height: 600px) {
	.countdown {
		display: none;
	}
	.main__button {
		margin: 20px 0 0 0;
	}
}

@media only screen and (max-width: 430px) and (min-height: 600px) {
	.countdown {
		display: block;
	}
	.countdown__number {
		display: block;
		margin: 10px auto;
		padding: 16px 20%;
	}
	h1 {
		font-size: 10vw;
	}
	p {
		font-size: 4vw;
	}
}

@media(max-height: 500px) {
	body {
		overflow-y: hidden;
	}
}

@media only screen and (max-width: 312px) and (max-height: 390px) {
	.countdown, .main__button, footer {
		display: none;
	}
	h1 {
		font-size: 15vw;
	}
	p {
		font-size: 4.5vw;
	}
}