body{

	margin: 0px;
}

img{
	
	position:fixed;
	top:0px;
	left:0px;
	width:100%;
	height:100%;

}

#quote{

	z-index:1;
	position: relative;
	top:170px;
	text-align: center;
	font-family: 'Baloo Tammudu', cursive;
	font-size:50px;
	opacity: 0.5;
	cursor: pointer;		
}

#form_button{

	position:relative;
	left:47%;
	bottom:-220px;
	
	background-color:#594028;
	
	width:144px;
	padding:17px 0px 10px 5px;

	border:none;
	border-radius:50px;		

	font-family: 'Baloo Tammudu', cursive;
	color: white;
	opacity: 0.8;
	transition: all 1s;

}

#form_button:hover{

	opacity:0.5;
	transform: scale(1.1);
	background-color: brown;
}

#dev{

	
	font-size:2.5vw;
	position: relative;
	top:390px;
	
	text-align: center;
	font-family: 'Dancing Script', cursive;
	color: brown;
	width:19%;
	background-color:brown; 
  	border-radius:6px;
  	cursor: pointer;
  	height:50px;
  	line-height:50px;
  	
  	transition-property: background, border-radius;
  	transition-duration: 1s;
  	transition-timing-function: linear;
  	color: black;
  	opacity: 0.3
	
}

#dev:hover {
  background: #ff7b29;
  border-radius:10%;
  color:green;
  opacity:0.8;
}


