@charset "utf-8";
/* CSS Document */



div {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 700px;
	margin: 0 75px;
}
html {
	background: url("background.jpeg");
}
body {
	background: url("background.jpeg");
	background-position: center;
	background-size: cover;
	min-height: 100vh;
	animation: pageOpen 1.5s ease;
}
.logo {
	height: 100px;
	display: block;
	justify-self: center;
	margin-bottom: 0px;
}
h1 {
	font-size: 48px;
	font-family: "sheila", sans-serif;
	font-weight: 700;
	font-style: normal;
}
.begin {
	display: inline-block;
	padding: 18px 96px;
	font-family: "freight-sans-condensed-pro", sans-serif;
	font-size: 24px;
	font-weight: 400;
	font-style: normal;
	text-align: center;
	color: #ffffff;
	background-color: #222222;
	border: none;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.1s ease;
}
.begin:hover {
  background-color: #111111;
}
.begin:active {
  transform: scale(0.98);
}
.transition {
	opacity: 1;
	transform: translateY(0px);
	animation: pageOpen 1s ease;
}
@keyframes pageOpen {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0px);
	}
}