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

body {
	font-family: 'Indie Flower', cursive;
	
}

h2 {
	color: white;
	text-transform: capitalize;
	font-size: 3em;
}

.image {
	background-image: url(cargood.jpg);
	background-size: cover;
	height: 100%;
	background-position: center;
}

.container {
	display: flex;
	height: 300px;
	flex-flow: row;
	justify-content: center;
	align-items: flex-end;
}

.btncontainer {
	height: 480px;
}

.btn {
	padding: 15px 40px;
	background-color: rgba( 50, 100, 41, 0.8);
	border: 1px solid rgba( 50, 100, 41, 0.8);
	border-radius: 25px;
	font-weight: bold;
}

.btn:hover {
	background-color: rgba( 26, 25, 45, 1);
	border: 1px solid rgba( 26, 25, 45, 1);
	margin: 1px 1px;
	cursor: pointer;
}