@font-face {
  font-family: 'h1text';
  src: url("./fonts/JockeyOne-Regular.otf");
}

html, body {
	background-color: #000000;
	background-image: url('./images/woods.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	color: white;
	width: 100%;
	height: 100%;
    margin:0;
    padding:0;
	text-align: center;
}

a {
	color: white;
}

h1 {
	font-size: 5em;
	font-family: h1text;
}

textarea {
  resize: none;
}

button {
	font-size: 3em;
	padding: 0px 30px;
	margin: 10px;
	font-family: h1text;
	color: #E02020;
	background-color: rgba(200, 200, 200, 75%);
	border: #E02020 solid 8px;
}

.flexbox {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height: 100%;
	width: 100%;
}

.block1 {
	width: 100%;
	text-align: center;
}

.block2 {
	width: 100%;
	text-align: center;
}

.title {
	margin-top: -20%;
	width: 100%;
	text-align: center;
}

.tallspace {
	width: 100%;
	height: 200px;
	text-align: center;
}

.copyright {
	align-self: flex-end;
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: 20px;
}

@media only screen and (max-width: 650px) {
	
	button {
		font-size: 1.5em;
	}
	
	.title {
		position: relative;
		top: -20%;
	}
	
	.block1 {
		position: relative;
		top: -20%;	
	}
	
	.block2 {
		position: relative;
		top: -20%;	
	}
}



