body {
	display:flex;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
	background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(0, 0, 0, 0.3)), url('bg.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment:fixed;
	background-position: top;
	-webkit-text-size-adjust: 100%
}
@keyframes fadeIn {
	0% {
	  opacity:0;
	  top:50px;
	}
	100% {
	  opacity:1;
	}
}
@keyframes fadeIn2 {
	0% {
	  opacity: 0;
	}
	100% {
	}
}
.menu {
	z-index:1;
	left:0;
	top:0;
	background-color:white;
	position:fixed;
	width:100%;
	height:70px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
	opacity:0.5;
	transition:0.2s ease-out;
}
.menu:hover {
	opacity:1;
	transition:0.2s ease-in;
}
.logo {
	position:absolute;
    left:50%;
	right:50%;
}
.logo img {
	width: 60px;
    margin: auto;
    display: block;	
	transform: translateX(-50%);
}
.start {
	top:50%;
	position:absolute;
	margin-left:30%;
	transform: translateY(-50%);
}
.plan {
	top:50%;
	position:absolute;
	margin-left:70%;
	transform: translateY(-50%);
}
button {
	text-align:center;
	transform: translateX(-50%);
	background-color:white;
	border:rgba(0, 0, 0, 1);
	cursor:pointer;
	font-size:20px;
	font-weight:100;
	transition:0.1s ease-out;
	height:70px;
	width:100px;
}
button:hover {
	background-color:rgba(0, 0, 0, 0.1);
	transition:0.1s ease-in;
}
.content {
	margin: auto;
	display:flex;
	width:100%;
	top:80px;
	flex-direction:column;
	align-items: center;
	justify-content:center;
}
h1 {
	margin-top:100px;
	left:0;
	text-align:center;
	font-size:110px;
	color:white;
	animation: fadeIn 1s ease-in-out;
	font-weight:100;
	text-decoration:underline;
}
h2 {
	text-align:center;
	font-size:30px;
	max-width:60%;
	color:white;
	animation: fadeIn 1.5s ease-in-out;
	font-weight:100;
}
iframe {
	margin-top:20px;
	opacity:30%;
	transition:0.5s ease-out;
	box-shadow:0 0 30px rgba(0,0,0,0.7);
	animation: fadeIn2 2s ease-in-out;
}
iframe:hover {
	opacity:100%;
	transition:0.3s ease-in;
}

p {
	text-align:center;
	color:white;
	font-size:1vw;
	text-shadow:0 5px 10px rgba(0,0,0,0.7);
	opacity:0.2;
	transition:0.2s ease-out;
	bottom:0px;
	pointer:none;
	animation: fadeIn2 2s ease-in-out;
}
p:hover {
	opacity:1;
	transition:0.2s ease-out;
	cursor:default;
}