@charset "utf-8";
*{
	margin:0;
	padding: 0;
	text-align: center;
}

#banner{
	background: url("images/mit_community_default.jpg");
	background-size: cover;
	background-position: center;
	height: 100vh;
}

.logo{
	width: 320px;
	height: 130px;
	filter: drop-shadow(7px 2px 2px #000000);
	margin-top: 48px;
}

.text-logo{
	text-align: left;
	color: white;
	padding-right: 56px;
	padding-left: 10px;
	padding-top: 1px;
	margin-top: 0px;
	filter: drop-shadow(7px 2px 2px #000000);
}

.text-logo h1{
	font-size: 40px;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}

.text-logo h2{
	font-size: 40px;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}

.banner-btn{
	margin: 70px auto 0;
}

.banner-btn a{
	width: 200px;
	text-decoration: none;
	display: inline-block;
	margin: 0 10px;
	padding: 12px 0;
	color: white;
	background:rgba(0,0,0,0.82);
	border: .5px solid #fff;
	position: relative;
	z-index: 1;
}

.banner-btn a span{
	width: 0;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: red;
	z-index: -1;
	transition: 0.5s;
}

.banner-btn a:hover span{
	width: 100%;
}

.banner-btn a:hover{
	color:black;
}

.nav-area{
	position: fixed;
	top:0;
	right: 0;
	z-index: 1;
}

.nav-area .hamburger-menu{
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	cursor: pointer;
	width: 50px;
	height: 50px;
	opacity: 0;
}

.nav-area .nav-icon{
	position:absolute;
	top: 15px;
	right: 15px;
	z-index: 1;
	width: 50px;
	height: 50px;
	padding: 16px;
	background: rgba(160,0,2,0.84);
	display: flex;
	align-items: center;
	justify-content: center;
}

.nav-area .nav-icon > div{
	display:flex;
	align-items: center;
	justify-content: center;
	transition: 0.5s ease;
	position: relative;
	width: 100%;
	height: 2px;
	background: black
}

.nav-area .nav-icon > div:before,
.nav-area .nav-icon > div:after{
	content: '';
	position: absolute;
	z-index: 1;
	top: -8px;
	width: 100%;
	height: 2px;
	background: inherit;
}

.nav-area .nav-icon >div:after{
	top: 8px;
}

.nav-area .hamburger-menu:checked + .nav-icon > div{
	transform: rotate(135deg);
}

.nav-area .hamburger-menu:checked + .nav-icon > div:before,
.nav-area .hamburger-menu:checked + .nav-icon > div:after{
	top: 0;
	transform: rotate(90deg);
}

.nav-area .hamburger-menu:checked:hover + .nav-icon > div{
	transform: rotate(225deg);
}

.nav-area .hamburger-menu:checked ~ .main-menu{
	visibility: visible;
}

.nav-area .hamburger-menu:checked ~ .main-menu > div{
	transform: scale(1);
	transition-duration: 0.8s;
}

.nav-area .hamburger-menu:checked ~ .main-menu > div > div{
	opacity: 1;
	transition: opacity 0.5s ease;
}

.nav-area .main-menu{
	display:flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	right: 0;
	width:100%;
	height:100%;
	visibility: hidden;
	overflow: hidden;
}

.nav-area .main-menu > div{
	display: flex;
	flex: none;
	align-items: center;
	justify-content: center;
	transform: scale(0);
	transition: 0.5s ease;
	background: rgba(160,0,2,0.84);
	border-radius: 50%;
	width: 200vw;
	height: 200vw;
}

.nav-area .main-menu > div > div{
	text-align: center;
	max-width: 90vw;
	max-height: 100vh;
	opacity: 0;
	transition:opacity 0.5 ease;
}

.nav-area .main-menu > div > div > ul > li{
	list-style: none;
	color:white;
	font-size: 24px;
	padding: 16px;
}

.nav-area .main-menu > div > div > ul > li > a{
	color: inherit;
	text-decoration: none;
	transition: color 0.5s ease;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}

footer{
	color:white;
	background-color: black;
}

