@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');
}


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

.navbar {
	background-color: lightblue;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	height: calc(10px + 5%);
	text-align: center;
}

.navlink {
	color: black;
	display: inline-block;
	font-size: calc(10px + 2vh);
	line-height: calc(10px + 5vh);
	padding: 0% 5% 0% 5%;
	text-decoration: none;
	vertical-align: middle;
	width: 40%;
}

.navlogo {
	display: inline-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;
}

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

.section {
	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: 0px 0px 0px 0px;
}

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

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

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

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

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

#content {
	margin: 0% 2.5% 2.5% 2.5%;
}

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

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

button {
	background-color: darkgrey;
	border: transparent;
	border-radius: 4px;
	font-size: inherit;
	margin: 5px 0px 5px 0px;
	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 0px 5px 0px;
	max-height: 30px;
	min-height: 22px;
	min-width: 8em;
	max-width: 90%;
	padding: 0.5em 0.75em 0.5em 0.75em;
	width: 90%;
}

