:root {
	font-family: "Montserrat", sans-serif;
}

html {
	width: 100vw;
	display: flex;
	justify-content: center;
	align-items: start;
}

body {
	width: 100vw;
	height: auto;
}

@media only screen and (min-width: 1000px) {
	body {
		width: 800px;
	}
}

h1 {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-around;
}

img {
	height: 100px;
}

form {
	width: 100%;
	display: flex;
	flex-direction: column;
}

input {
	margin: 3px;
}

input[type=submit] {
	padding: 8px 15px;
	border-radius: 5px;
	display: flex;
	align-items: center;
	text-decoration: none;
	color: #FFFFFF;
	font-family: "Montserrat", sans-serif;
	font-size: 15px;
	border: white solid 2px;
	background-color: #990000;
	box-shadow: 2px 2px #CCCCCC;
}

input[type=text] {
	border-radius: 5px;
	border: black solid 2px;
	height: 20px;
}  

a {
	margin-top: 10px;
	width: 150px;
	padding: 8px 15px;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: #FFFFFF;
	font-size: 15px;
	border: white solid 2px;
	background-color: #990000;
	box-shadow: 2px 2px #CCCCCC;
}