html, body
{
	height: 100%;
	width: 100%;
	overflow: hidden;
	color-scheme: dark;
}

@font-face
{
    font-family: 'Tahoma';
    src: url('Tahoma.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face
{
    font-family: 'Tahoma';
    src: url('Tahoma-bold.ttf');
    font-weight: bold;
    font-style: normal;
}

body
{
	margin: 0;
	padding: 0;
	background-image: url('background.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	color: #fff;
	font-family: tahoma;
}

button
{
	padding: 0;
	background: linear-gradient(to top, rgba(249, 0, 0, 0.75),  rgb(139, 0, 0, 0.75)),
		linear-gradient(to bottom, rgb(0, 0, 0, 0) 50%, rgba(249, 0, 0, 0.5) 0%);
	border-top: 0;
	border-left: 0;
	border-right: 0;
	border-bottom: 1px solid #f90000;
	box-sizing: border-box;
	color: #000;
	text-shadow: 0 -1px #f90000;
	cursor: pointer;
}

button.active
{
	background: linear-gradient(to top, rgba(194, 0, 0, 0.75),  rgb(84, 0, 0, 0.75)),
		linear-gradient(to bottom, rgb(0, 0, 0, 0) 50%, rgba(194, 0, 0, 0.5) 0%);
}

@media (hover: hover)
{
    button:hover
	{
		background: linear-gradient(to top, rgba(194, 0, 0, 0.75),  rgb(84, 0, 0, 0.75)),
			linear-gradient(to bottom, rgb(0, 0, 0, 0) 50%, rgba(194, 0, 0, 0.5) 0%);
    }
}

header
{
	display: flex;
	align-items: center;
	height: 100px;
	width: 100%;
	overflow: hidden;
}

header #header-logo
{
	position: absolute;
	margin-left: 20px;
	left: 100%;
	content: url('header-logo.png');
	max-height: 100px;
	width: auto;
	max-width: 100%;
}

header #hamburger-menu-button
{
	position: absolute;
	margin-right: 20px;
	right: -100%;
	border-radius: 10px;
	height: 60px;
	width: 60px;
}

header #hamburger-menu-button::before
{
	content: url('hamburger-menu-icon.png');
}

header nav
{
	position: absolute;
	top: 100px;
	width: 100%;
	z-index: 1;
}

header nav button.menu-button
{
	margin: 0 20px 0 20px;
	position: absolute;
	right: 100%;
	width: calc(100% - 40px);
	height: 50px;
	border-radius: 10px;
	font-size: 18px;
	font-weight: bold;
}

main
{
	height: calc(100% - 100px - 20px);
	width: 100%;
	bottom: 20px;
	position: absolute;
	overflow: hidden;
}

main #slides
{
	height: 100%;
	width: 100%;
	left: 100%;
	display: flex;
	position: absolute;
}

main .page
{
	background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.5));
	position: absolute;
	bottom: 0;
	height: calc(100% - 20px);
	width: calc(100% - 40px);
	margin: 0 20px 20px 20px;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	overflow-x: hidden;
	overflow-y: auto;
}

main .container
{
	min-height: calc(100% - 40px);
	width: calc(100% - 40px);
	margin: 20px;
	display: flex;
	flex-direction: column;
}

main .container .logo-container
{
	width: 100%;
	height: 100%;
	display: flex;
	flex-shrink: 0;
	justify-content: center;
	align-items: center;
}

main .container .logo-container #logo
{
	content: url('logo.png');
	object-fit: contain;
	height: 100%;
	width: auto;
	max-width: 100%;
}

main .page h2
{
	color: #f90000;
	font-size: 22px;
	margin: 20px 0 20px 0;
}

main .page h3
{
	color: #f90000;
	margin: 10px 0 10px 0;
	font-size: 20px;
}

main .page span.highlighted
{
	color: #f90000;
	font-weight: bold;
}

main .page p
{
	margin: 10px 0 10px 0;
}

main .page ul
{
	margin: 10px 0 10px 0;
	padding: 0 0 0 30px;
}

.while-countdown, .after-countdown
{
	display: flex;
	flex-direction: column;
}

.copiable
{
	user-select: all;
}

.countdown
{
	margin: 20px auto 20px auto;
	width: 100%;
	max-width: 500px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: linear-gradient(to top, rgba(255, 255, 255, 0.25), rgba(0, 0, 0, 0));
	padding: 20px;
	box-sizing: border-box;
	border-radius: 15px;
}

.countdown .countdown-text
{
	font-size: 22px;
}

.countdown .countdown-main
{
	width: 100%;
	display: flex;
	gap: 10px;
	justify-content: space-around;
}

.countdown .countdown-box
{
	display: flex;
	flex-direction: column;
	align-items: center;
}

.countdown .countdown-box-value
{
	font-size: 50px;
	font-weight: bold;
}

.countdown .countdown-box-label
{
	font-size: 20px;
	color: lightgray;
}

.dex-link-container
{
	width: 100%;
	display: flex;
	text-align: center;
	font-size: 20px;
}

footer
{
	background: rgba(0, 0, 0, 0.75);
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	font-size: 15px;
	height: 20px;
	width: 100%;
	bottom: 0;
	user-select: none;
}

@media only screen and (min-width: 1024px)
{
}