@font-face {
  font-family: PrisonerSF;
  src: url(PrisonerSF.ttf);
}

.logo {
	display: block;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	width: 356px;
	height: 200px;
	padding-top: 100px;
}

.container {
	position: absolute;
	margin: auto;
	top: 0; left: 0; bottom: 100px; right: 0;
	width: 700px;
	height: 700px;
}

input.searchbox {
	display: block;
	margin: auto;
	height: 35px;
	width: 100%;
	margin-top: 50px;
	margin-bottom: 50px;
	text-align: left;
	text-indent: 15px;
	font-family: PrisonerSF;
	font-size: 18px;
	border: 1px solid;
	border-radius: 2px;
	border-color: #ebebeb;
	border-bottom: 2px solid #ebebeb;
}

.searchbox:required {
	box-shadow: none;
	outline: none;
}

.searchbox:hover {
	box-shadow: 1px 1px 5px #c5c5c5;
}

.searchbox:focus {
	box-shadow: 1px 1px 5px #c5c5c5;
}

#buttons {
	text-align: center;
}

button {
	display: inline-block;
	margin-top: 15px;
	height: 40px;
	width: 150px;
	font-weight: bold;
	color: #898989;
	background-color: #f4f4f4;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

.search:hover {
	color: #5f009c;
	border: 1px solid;
	border-color: #898989;
}

.search:active {
	border-color: #5f009c;
}

.login:hover {
	transition-duration: 0.4s;
	color: #f4f4f4;
	background-color: #5f009c;
	opacity: 0.6;
}

.login:active {
	box-shadow: 0 5px #f4f4f4;
	transform: translateY(2px);
}

@media screen and (max-width: 736px) {
	.logo {
		width: 267px;
		height: 150px;
	}
	
	.container {
		width: auto;
	}
	
	input.searchbox {
		width: 90%;
		margin: auto;
		top: 0; left: 0; bottom: 0; right: 0;
		text-indent: 5px;
	}
} 

@media (prefers-color-scheme: dark) {
	body {
		background-color: #323639;
	}
	
	.logo {
		opacity: .75;
	}
	
	input.searchbox {
		border-radius: 5px;
		border-color: #212121;
		background-color: #4a4d4f;
		color: lightgrey;
	}
	
	button {
		background-color: #595959;
		color: lightgrey;
	}
}