@font-face{
	font-family: "star-wars";
	src: url("../src/fonts/star-wars.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}
html {
	height: 100%;
}
body {
	height: 100%;
	margin: 0;
}
.wrapper {
	height: 100%;
}
main {
	height: 100%;
	display: flex;
	justify-content: space-between;
	flex-flow: column nowrap;
	text-align: center;
	align-items: center;
	font-family: helvetica;
}
.title {
	margin-top: -15px;
}
h1 {
	font-family: star-wars;
	font-weight: 500;
	font-size: 24pt;
}
h2 {
	font-weight: 500;
	font-size: 18pt;
}
p {
	font-size: 16pt;
}
.middle p {
	margin: 0;
}
.middle p:first-child {
	margin-bottom: 7px;
}
.list {
	text-align: start;
}
.list p {
	margin-left: 17px;
}
.orange {
	color: #ffa000;
}
.white {
	color: white;
}
.h-form {
	margin: 0 0 3px 0;
}

.form-wrapper {
	display: flex;
	justify-content: center;
}
form {
	margin-top: 0;
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
	justify-content: center;
}
input {
	font-size: 14pt;
	width: 400px;
	height: 30px;
	margin: 8px 0 8px 0;
	border-radius: 5px;
	border-width: 1px;
	border-style: solid;
	border-color: black;
	padding: 10px;
	-webkit-box-shadow: inset 0 0 2px 2px #888;
	box-shadow: inset 0 0 2px 2px #888;
	background: #fff;
}
.optional {
	height: 60px;
}
.modal_button {
	font-size: 18pt;
	color: white;
	background-color: #ff7400;
	border-color: unset;
	border-radius: 10px;
	font-weight: 700;
	height:70px;
	width: 420px;
	text-decoration: none;
	outline: none;
	display: inline-block;
	padding: 10px 30px;
	margin: 10px 0 0 0;
	position: relative;
	overflow: hidden;
	-webkit-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}
.modal_button:before {
  content: "";
  background: -o-linear-gradient(
    left,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.5)
  );
  background: -webkit-gradient(
    linear,
    left top, right top,
    from(rgba(255, 255, 255, 0.1)),
    to(rgba(255, 255, 255, 0.5))
  );
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.5)
  );
  height: 100px;
  width: 100px;
  position: absolute;
  top: -8px;
  left: -200px;
  -webkit-transform: skewX(-45deg);
  -ms-transform: skewX(-45deg);
  transform: skewX(-45deg);
}
.modal_button:hover {
  background: #fe6637;
  color: #fff;
}
.modal_button:hover:before {
  left: 250px;
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media (min-width: 1001px) {
	h1 {
		font-size: 39pt;
	}
	h2 {
		margin-top: 0;
		font-size: 40pt;
	}
	.m-wrapper {
		margin-bottom: 50px;
	}
}
@media  (max-width:1000px) {
	main {
		background: none;
	}
	p {
		font-size: 14pt;
	}
	.under {
		text-decoration: underline;
	}
	.m-wrapper {
		margin-bottom: 100px;
	}
}
@media (min-width: 650px) {
	.bottom {
	width: 50%;
	}
}

@media (max-width: 700px) {
  .modal_button {
    width: 320px;
  }
  input {
    width: 300px;
  }
}