@font-face {
	font-family: 'Woodchuck-Regular';
	src: url('fonts/Woodchuck-Regular.woff2') format('woff2');
    font-display: swap;
}

@font-face {
	font-family: 'Woodchuck-Thin';
	src: url('fonts/Woodchuck-Thin.woff2') format('woff2');
    font-display: swap;
}

html, body, content {
	height: 100%;
	width: 100%;
	margin: 0px;
	padding: 0px;
}

body {
	background: url('../images/background.png');
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center;
	background-color: #000;
}

content {
	font-family: 'Woodchuck-Regular', "Helvetica", "Arial", sans-serif;
	display: block;
	position: relative;
	overflow: hidden;
	background: rgba(0,0,0,0.75);
}

nav {
	position: absolute;
	top: 30px;
	right: 30px;
	padding: 15px;
	background-color: rgba(255,255,255,.90);
	z-index: 2;
}

nav > item {
	padding: 0px 10px;
	font-size: 18px;
}

nav > item > a {
	color: black;
}

nav > item:not(:last-child) {
	border-right: 2px solid black;
}

page {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: 90%;
	height: 90vw;
	max-height: 800px;
	overflow-y: scroll;
	background-color: white;
	padding: 10px;
	font-family: 'Woodchuck-Thin', "Helvetica", "Arial", sans-serif;
	font-size: 20px;
}

page > h2 {
	font-family: 'Woodchuck-Regular', "Helvetica", "Arial", sans-serif;
}

page p, page ul{
	font-family: "Helvetica", "Arial", sans-serif;
	font-size: 14px;
}

logo {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: 50%;
	height: 50vw;
	max-height: 400px;
	max-width: 400px;
}

logo:before {
	content: '';
	position: relative;
	display: block;
	width: 400%;
	height: 400%;
	box-sizing: border-box;
	margin-left: -150%;
	margin-top: -150%;
	border-radius: 50%;
	background-color: rgba(255,255,255,.5);
	animation: pulse-ring 3.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
	border: 5px solid white;
}

logo:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
  	background: url('../images/Hoobs Logo 1200x1200.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 50%;
	box-shadow: 0 0 8px rgba(0,0,0,.5);
	animation: pulse-dot 3.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -1.5s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(.25);
  }
  80%, 100% {
    opacity: 0;
  }
}

@keyframes pulse-dot {
  0% {
    transform: scale(.9);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(.9);
  }
}

footer {
	font-family: 'Woodchuck-Thin', "Helvetica", "Arial", sans-serif;
	display: block;
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
}

footer > a {
	color:white;
	font-size: 25px;
}

footer > spacer {
	color: white;
	padding: 0px 10px;
}


@media only screen and (max-width: 600px) {
	nav {
		left: 30px;
	}

	nav > item {
		display: inline-block;
		text-align: center;
		border: 0px !important;
		margin: 7px 0px;
		width: 49%;
		padding: 0px;
	}

	page {
		transform: translateX(-50%) translateY(-40%);
		height: 120vw;
	}

	/* Fix for AdSense Auto Ads blocking page on mobile */
	ins.adsbygoogle, .adsbygoogle, [id^="google_ads_iframe"] {
		z-index: 1 !important;
		pointer-events: auto !important;
		max-width: 100vw !important;
		max-height: 100vh !important;
		position: static !important;
		display: block !important;
	}

}