#home{
	background-color: #e8e8e8;
	height: 80vh;
	width: 100%;
}

#home h1{
	padding-top: 50px;
	font-size: 50px;
}

#home p{
	font-size: 22px;
	width: 80%;
}

@media screen and (max-width: 359px){
	#home{
		height: 120vh;
	}

	#home h1{
		font-size: 27px;
		width: 90%;
		margin-left: auto;
		margin-right: auto;
	}

	#home p{
		font-size: 18px;
		width: 90%;
		text-align: center;
	}
}

@media screen and (min-width: 360px) and (max-width: 700px){
	#home{
		height: 70vh;
	}

	#home h1{
		font-size: 27px;
		width: 90%;
		margin-left: auto;
		margin-right: auto;
	}

	#home p{
		font-size: 18px;
		width: 90%;
		text-align: center;
	}
}