/* Fonts */
@font-face {
    font-family: Noteworthy;
    src: url(fonts/Noteworthy-Lt.ttf);
}
@font-face {
    font-family: Zapfino;
    src: url(fonts/ZapfinoLinotypeOne.ttf);
}

body {
	font-family: Noteworthy;
	background: #00214a url("images/logo.png") no-repeat fixed center center;
	background-size: contain;
	color: #e6e2dc; /* Silver */
	text-align: center;
}
body.buffalo {
	background: #00214a url("images/logo_buffalo.png") no-repeat fixed center center;
	background-size: contain;
}
body.elephant {
	background: #00214a url("images/logo_elephant.png") no-repeat fixed center center;
	background-size: contain;
}
body.giraffe {
	background: #00214a url("images/logo_giraffe.png") no-repeat fixed center center;
	background-size: contain;
}
body.kudu {
	background: #00214a url("images/logo_kudu.png") no-repeat fixed center center;
	background-size: contain;
}
body.leopard {
	background: #00214a url("images/logo_leopard.png") no-repeat fixed center center;
	background-size: contain;
}
body.lion {
	background: #00214a url("images/logo_lion.png") no-repeat fixed center center;
	background-size: contain;
}
body.rhino {
	background: #00214a url("images/logo_rhino.png") no-repeat fixed center center;
	background-size: contain;
}
p {
	font-size: 24px;
}

img {
	max-width: 100%;
	height: auto;
}
a {
	color: #e6e2dc;
	font-family: Noteworthy;
	text-decoration: none;
}

.lang {
	background-color: #687E99;
    color: #e6e2dc;
}
/* Add a blue background color to the top navigation */
.topnav {
    background-color: #00214a;
    overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
    float: left;
    display: block;
    color: #e6e2dc; /* #f2f2f2 */
    text-align: center;
    padding: 10px 20px 10px 10px; /* 14px 16px Top/Bottom, Right/Left */
    text-decoration: none;
    font-size: 40px;
	font-family: Zapfino;
	word-spacing: -5px;
}

/* Change the color of links on hover */
.topnav a:hover {
    background-color: #e6e2dc; /* #ddd */
    color: #00214a; /* black */
}

/* Add an active class to highlight the current page */
.active {
    /*background-color: #4CAF50;*/
	background-color: #687E99; /* #33383e; */
    color: #e6e2dc;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
    display: none;
}
.topnav .lang {
	float: right;
	display: block;
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 775px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 775px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  /* Change background image */
	body {
		background: #00214a url("images/logo_mobile.png") no-repeat fixed center center;
		background-size: contain;
	}
	body.buffalo {
		background: #00214a url("images/logo_buffalo_mobile.png") no-repeat fixed center center;
		background-size: contain;
	}
	body.elephant {
		background: #00214a url("images/logo_elephant_mobile.png") no-repeat fixed center center;
		background-size: contain;
	}
	body.giraffe {
		background: #00214a url("images/logo_giraffe_mobile.png") no-repeat fixed center center;
		background-size: contain;
	}
	body.kudu {
		background: #00214a url("images/logo_kudu_mobile.png") no-repeat fixed center center;
		background-size: contain;
	}
	body.leopard {
		background: #00214a url("images/logo_leopard_mobile.png") no-repeat fixed center center;
		background-size: contain;
	}
	body.lion {
		background: #00214a url("images/logo_lion_mobile.png") no-repeat fixed center center;
		background-size: contain;
	}
	body.rhino {
		background: #00214a url("images/logo_rhino_mobile.png") no-repeat fixed center center;
		background-size: contain;
	}
}

/* Main content */
.content {
	padding-left:16px;
}
.index {
	width: 50%;
	top: 50%;
	left: 50%;
	position: absolute;
	transform: translate(-50%, -50%);
}
.header {
	float: none;
}
table.fullwidth {
	width: 70%;
	margin-left: 15%;
	margin-right: 15%;
	border-collapse: collapse;
}
table {
	width: 50%;
	margin-left: 25%;
	margin-right: 25%;
}
.noborder {
	border: none;
	padding: 2px;
	padding-right: 20px;
}
th {
	border: 1px solid #e6e2dc;
	padding: 8px;
	text-align: left;
	color: #e6e2dc;
	background-color: rgb(101, 143, 214);
	font-family: Noteworthy;
	font-size: 24px;
}
td {
	border: 1px solid #e6e2dc;
	padding: 8px;
	text-align: left;
	color: #e6e2dc;
	font-family: Noteworthy;
	font-size: 24px;
}
p.firstline::first-line {
	font-weight: bold;
}
.bold {
	font-weight: bold;
}

#map {
	width: 50%;
	height: 400px;
	margin: auto;
}