@font-face {
  font-family: Unifont; /* set name */
  src: url("res/unifont.otf"); /* url of the font */
}

html {
	font-family: Unifont;
	font-size: 24px;
	text-shadow: 2px 2px black;
	color: white;

	background-color: black;
}

body {
	margin: 0px;
	text-align: center;

	background-image: url("./res/Cave.png");
	background-repeat: repeat-x;
	background-size: cover;
	background-attachment: fixed;

	height: 100%;
}

header {
	background-image: url("./res/Jungle.png");
	background-repeat: repeat-x;
	background-size: contain;

	width: 100%;
	text-align: center;

	padding-top: 1%;
	padding-bottom: 1%;
	font-size: 64px;
}

h1 {
	font-size: 96px;
	text-shadow: 6px 6px black;
}

h2 {
	font-size: 32px;
	text-shadow: 3px 3px black;
}

a {
	color: inherit; 
	text-decoration: inherit;
}

.main {
	width: 60%;
	height: 100%;
	background-color: rgb(100, 100, 100);
	margin: auto;
	padding: 1%;
	padding-left: 2%;
	padding-right: 2%;
	bottom: 10px;
}

.navbar {
	list-style-type: none;
	margin: 0;
	padding: 0;
	background-color: #1a6617;
	display: flex;
	justify-content: center;
}

.navbar .navbar-element .navbar-link {
	display: block;
	color: white;
	padding: 14px 16px;
	text-decoration: none;
}

.navbar .navbar-element .navbar-link:hover {
	background: linear-gradient(180deg,rgba(26, 102, 23, 1) 0%, rgba(10, 84, 20, 1) 100%);
}

td {
	width: 1%;
	padding: 4%;
	padding-bottom: 0px;
	padding-top: 0px;
	font-size: 32px;
}

.download-link-container {
	padding: 1%;
}

.download-link {
	background-color: #2a8627;
	border-radius: 25px;

	font-size: 24px;
	padding: 5%;
	text-decoration: underline;
}