*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	height: 100%;
	width: 100%;
	background: black;
}

.background{
	height: 100%;
	width: 100%;
	
	opacity: 0.125;
	position: fixed;
	background-image: url('bg.png');
}

.touch{
	width: 100px;
	height: 100px;
	color: transparent;
	border-radius: 50%;
	border: 2px solid wheat;
	position: absolute;
	opacity: 0;
}

.nav{
	width: 100%;
	height: 10%;
	position: relative;
	top: 0;
	display: flex;
	justify-content: space-around;
}

.logo{
	width: 50%;
}
.logo img{
	height: 50px;
	position: relative;
	top: 15%;
	padding: 4px 16px;
}
.menu-list > ul {
	display: flex;
	list-style-type: none;
}

.menu-list img{
	height: 25px;
	padding: 2px 8px;
	margin: 16px 8px;}

.menu-list > ul li{
	padding: 2px 8px;
	margin: 18px 8px;
	text-transform: capitalize;
	font-family: Georgia;
	font-size: 12px;
	color: antiquewhite;
	font-weight: 500;
	border-bottom: 2px solid navajowhite;
}

.text{
	position: relative;
	top: 5%;
	height: 50vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
.text h1{
	color: antiquewhite;
	font-size: 72px;
	font-family: sans-serif;
	font-weight: 250;
	letter-spacing: 2px;
	word-spacing: 4px;
	padding: 8px 32px;
	margin: 8px 32px;
	text-align: center;
}

.bottom{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.bottom .imgContainer{
	height: 400px;
}

.bottom .visitus{
	width: 120px;
}

.bottom .visitus img{
	margin: 16px 8px;
	width: 80%;
}

.bottom .imgContainer img{
	height: 100%;
	border-radius: 50%;
}

.page-two{
	height: 80vh;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
	color: antiquewhite;
}

.page-two h2{
	font-size: 48px;
	font-weight: 300;
	font-family: sans-serif;
	letter-spacing: 2px;
	word-spacing: 4px;
	padding: 0 16px;
}

.page-two h3 {
	font-size: 24px;
	font-weight: 200;
	font-family: sans-serif;
	letter-spacing: 1px;
	word-spacing: 2.5px;
	padding: 0 24px;
}

.page-two h4 {
	font-size: 16px;
	font-weight: 100;
	font-family: sans-serif;
	letter-spacing: 0.5px;
	word-spacing: 1px;
}

@media (max-width: 768px){
	.text h1{
		font-size: 48px;
	}
	.bottom .imgContainer{
		height: 200px;
	}
	
	.page-two{
		height: 80vh;
	}
	
	.page-two h2{
		font-size: 32px;
	}
	
	.page-two h3{
		font-size: 20px;
	}
}