* {
    margin: 0;
    padding: 0;
    color: rgb(226, 226, 226);
    box-sizing: border-box;
}

a {
	text-decoration: none;
}

body {
	background-color: rgb(41, 41, 41);
	width: 100vw;
	font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

table {
	margin-left: auto;
	margin-right: auto;
	font-size: 1.25em;
}

td {
	padding-top: 10px;
	padding-bottom: 10px;
}

.inner tr td:nth-child(1) {
	text-align: center;
	padding-right: 10px;
}
.inner tr td:nth-child(2) {
	text-align: left;
}

.header {
	height: 75px;
	font-size: 2em;
	color: rgb(255, 255, 255);
	text-align: center;
	line-height: 75px;
	letter-spacing: 7px;
	word-spacing: 15px;
	animation: fadein1 3s ease forwards;
}

.main {
	display: flex;
	justify-content: center;
	padding: 10px;
	height: fit-content;
}

.footer {
	position:fixed;
	bottom: 0px;
	z-index: 999;
	text-align: center;
	height:fit-content;
	width: 100%;
	color: rgb(72, 72, 72);
}

.footer p {
	color: rgb(72, 72, 72);
}

.content {
	display: block;
	position:relative;
	width:fit-content;
	height:fit-content;

}

#release {
	border-radius: 15px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.5);
	margin-right: auto;
	margin-left: auto;
	display: block;
	width:100%;
	height:auto;
	animation: fadein1 3s ease forwards;
}

.overlay {
	border-radius: 15px;
	position: absolute;
	background-color: rgba(0, 0, 0, 0.526);
	overflow: hidden;
	text-align: center;
	line-height: 2em;
	white-space: nowrap; 
	color: white;
	font-size: 20px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	animation: fadein2 5s linear 1 forwards;
	height: 100%;

}

.overlaytext {
	display: flex;
	justify-content: center;
	align-items: center;
	height:100%;
}

ul {
	list-style: none;
  }

.bottomnav {
    position: fixed;
    bottom: 20px;
    width: 100%;
    background-color: transparent;
    z-index: 999;
    text-align: center;
    font-size: 15px;
	/* font-size: ; */
}

.bottomnav ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.bottomnav ul li {
    font-size: 2rem;
    color:white;
    text-decoration: none; 
    margin: 0px 13px;
}

@media screen and (max-width: 600px) {
	.header {
		font-size: 1.25em;
	}
	table {
		margin-left: auto;
		margin-right: auto;
		font-size: 1.25em;
	}
	td {
		padding-top: 7px;
		padding-bottom: 7px;
	}
}

@media (max-width:480px) {
	.header {
		font-size: 1.25em;
	}
	table {
		margin-left: auto;
		margin-right: auto;
		font-size: 1.25em;
	}
	td {
		padding-top: 7px;
		padding-bottom: 7px;
	}
}

@media (max-width:320px) {
	.header {
		font-size: 0.75em;
	}
	table {
		margin-left: auto;
		margin-right: auto;
		font-size: 1em;
	}
	td {
		padding-top: 0px;
		padding-bottom: 0px;
	}
}

@keyframes fadein1 {
	from {
	  opacity: 0;
	  transform: translateY(50px);
	}
	to {
	  opacity: 1;
	  transform: translateY(0);
	}
  }

@keyframes fadein2 {
	0% { opacity: 0; }
	60% { opacity: 0; }
	100% { opacity: 1;}
}