@font-face {
	font-family: Arvo;
	font-style: italic;
	font-weight: normal;
	src: url(/fonts/Arvo-Italic.ttf);
}

@font-face {
	font-family: Arvo;
	font-style: normal;
	font-weight: normal;
	src: url(/fonts/Arvo-Regular.ttf);
}

@font-face {
	font-family: Arvo;
	font-style: normal;
	font-weight: bold;
	src: url(/fonts/Arvo-Bold.ttf);
}

@font-face {
	font-family: Arvo;
	font-style: italic;
	font-weight: bold;
	src: url(/fonts/Arvo-BoldItalic.ttf);
}

@font-face {
	font-family: Handwritten;
	font-style: normal;
	font-weight: normal;
	src: url(/fonts/Handwritten.ttf); format('truetype'),
		url(/fonts/Handwritten.woff2) format('woff2'),
		url(/fonts/Handwritten.woff) format('woff');
}

html, body {
	margin: 0;
	padding: 0;
/*	height: 100%;*/
	width: 100%;
}

a, h, h1, h2, h3, li, p {
	font-family: Arial, sans-serif;
}

button {
	background-color: darkgrey;
	border: transparent;
	border-radius: 4px;
	font-size: inherit;
	margin: 5px 0;
	max-height: 40px;
	min-height: 22px;
	min-width: 48px;
	padding: 0.5em 0.75em 0.5em 0.75em;
	transition-duration: 0.25s;
}

button:hover {
	background-color: grey;
}

input {
	border: 1px solid grey;
	border-radius: 4px;
	margin: 5px 0;
	max-height: 30px;
	min-height: 22px;
	min-width: 8em;
	max-width: 90%;
	padding: 0.5em 0.75em 0.5em 0.75em;
	width: 90%;
}

img {
	display: block;
	margin: auto;
}

.handwritten {
        font-family: Handwritten, sans-serif;
}

.navbar {
	margin: 0;
	padding: 0;
	background-color: lightblue;
/*	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;*/
	display: block;
	list-style-type: none;
	height: calc(10px + 5%);
	text-align: center;
	width: 100%;
	position: fixed;
	top: 0;
/*	height: 40px;*/
}

.navbar li {
	margin: 0;
	padding: 0;
	background-color: lightblue;
	float: left;
	width: fit-content;
}

.navbar li button {
	height: calc(10px + 5%);
}

.navlink {
	box-sizing: border-box;
	color: black;
	display: inline-block;
	/*font-size: 1em;*/ /*calc(10px + 2vh);*/
	line-height: calc(10px + 5vh);
	padding: 0 20px;
	text-decoration: none;
	vertical-align: middle;
	transition: background-color 0.5s ease;
}

.navlogo {
	display: block;
	height: calc(10px + 3vh);
	padding: 1vh 1vh 1vh 1vh;
	vertical-align: middle;
	width: calc(10px + 3vh);
}

.navlink:hover {
	background-color: lightgrey;
	text-decoration: underline;
	transition: background-color 0.5s ease;
}

.navlogo:hover {
	background-color: lightgrey;
}

.section {
/*	margin: 10px 0 0 0;
	padding-bottom: 1%;*/
}

.centerfallback {
	margin: 0;
	position: absolute;
	top: calc(50% - (230px / 2 + 5vw));
	left: calc(50% - (min(400px, max(50%, 12em)) / 2 + 3% + 3px));
}

.center {
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.fixed {
	position: fixed;
}

.fullwidth {
	width: 100%;
}

.prompt {
	border: 3px solid lightgrey;
	backdrop-filter: blur(10px);
	background: rgba(255, 255, 255, 0.4);
}

.background {
	border: 3px solid transparent;
	filter: blur(10px);
	height: 224px;
	z-index: -1;
}

.background, .prompt {
	max-height: 400px;
	max-width: 400px;
	min-width: 12em;
	padding: 5% 3% 5% 3%;
	width: 50%;
}

.background, .prompt, .failure, .success {
	border-radius: 10px;
	border-style: solid;
	border-width: 3px;
}

.alert {
	padding: 2% 3% 2% 3%;
}

.alert p {
	margin: 0;
}

.failure {
	background-color: #FF0000;
	border-color: #FFAAAA;
}

.success {
	background-color: #00EE00;
	border-color: #99EE99;
}

.hidden {
	display: none;
	visibility: hidden;
	opacity: 0;
	transition: visibility 0s 1s, opacity 1s linear;
}

.visible {
	display: block;
	visibility: visible;
	opacity: 1;
	transition: opacity 0.5s linear;
}

.pdf {
	display: block;
	height: 500px;
	width: 100%;
	margin: auto;
	max-width: 1000px;
}

#abuseipdb-badge {
	padding: 5% 0% 0% 0%;
	width: 200px;
}

#content {
	display: block;
	margin: calc(40px + 5%) auto auto auto;
/*	margin: max(calc(40px + 5%), 40px) 2.5% 2.5% 2.5%;*/
	max-width: 1000px;
}

#content .section p {
	box-sizing: border-box;
	margin: 20px 10px 40px 10px;
/*	width: 100%;*/
}

.section h1, .section h2 {
	width: 100%;
	text-align: center;
}

@media screen and (max-width: 1000px) {
	ul.navbar li {
		/*float: none;*/
		width: 100%;
	}

	.navlink.hideable {
		display: none;
	}

	.navlink.visible {
		display: block;
		visibility: visible;
		opacity: 1;
		transition: opacity 0.5s linear;
	}

	ul.navbar li button {
		display: inline-block;
	}
}

@media screen and (min-width: 1000px) {
	ul.navbar li button {
		display: none;
	}
}
