@font-face {
	font-family: 'Proto Mono';
	font-weight: 400;
	font-style: normal;
	src: url('./fonts/ProtoMono-Regular.otf') format('truetype');
}

@font-face {
	font-family: 'Proto Mono';
	font-weight: 700;
	font-style: normal;
	src: url('./fonts/ProtoMono-Bold.otf') format('truetype');
}

@font-face {
	font-family: 'Proto Mono';
	font-weight: 400;
	font-style: normal;
	src: url('./fonts/ProtoMono-Light.otf') format('truetype');
}

body, html {
	background-color: #080404;
	font-family: "Proto Mono", monospace;
	margin: 0px;
	padding: 0px;
}

body {
	display: block;
}

.container {
	display: flex;
  align-items: normal;
	flex-direction: column;
	justify-content: normal;
	width: 100vw;
	height: 100vh;
	margin: 0px auto;
	max-height: 100%;
}

.main {
	display: flex;
	flex-direction: column;
	justify-content: start;
	align-items: center;
	padding-top: 80px;
	height: 100%;
	width: 100%;
}

.image-container {
	width: auto;
	height: auto;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	flex-direction: row;
	justify-content: normal;
}

.title {
	font-size: 12px;
	line-height: 14px;
	text-transform: uppercase;
	color: rgb(217, 217, 217);
	margin-bottom: 48px;
	margin-top: 0px;
}

.btn {
	height: 36px;
	cursor: pointer;
	padding: 8px;
	background: rgb(255, 135, 0);
	border-color: rgb(255, 135, 0);
	border-style: solid;
	border-width: 1px;
	border-radius: 4px;
	box-shadow: none;
	min-width: 200px;
	font-family: "Proto Mono", monospace;
	font-weight: 700;
  text-transform: uppercase;
	font-size: 12px;
	line-height: 14px;
}

.btn:hover {
	background: white;
	border: 1px solid white;
}

@media (max-width: 959px) {
	body, html {
		height: -webkit-fill-available;
	}

	body {
		display: flex;
	}

	.main {
		justify-content: center;
		padding-top: 0px;
	}
}