body {
	margin: 0;
	font-size: 14px;
	font-family: sans-serif;
}

h2 {
	font-weight: 100;
}

.container {
	max-width: 900px;
	margin: auto;
	padding: 15px;
}
.image {
	display: inline-block;
	vertical-align: top;
	width: 200px;
	height: 200px;
	background-color: black;
}
.image::before{
		display: block;
		content: '';
	 width: 100%;
		height: 100%;
		background-color: rgba(0,0,0,0.8);
  opacity: 0;
 }

.image:hover:before{
	opacity: 1;
	transition: all 1s;
}

.image-one {
	background: url(../img/1.jpg) center no-repeat;
	background-size: cover;
 transition: all 1s;
}
.image-two {

	background: url(../img/2.jpg) center no-repeat;
	background-size: cover;
}
.image-three {
	background: url(../img/3.jpg) center no-repeat;
	background-size: cover;
}
.image-four {
	background: url(../img/4.jpg) center no-repeat;
	background-size: cover;
}

.button-one {
	border: none;
	font-weight: 700;
	font-size: 14px;
 color: white;
 padding: .8em 1em calc(.8em + 3px);
 border-radius: 3px;
 background: rgb(64,199,129);
 box-shadow: 0 -3px rgb(53,167,110) inset;
 transition: 0.2s;
}
.button-two {
	display: inline-block;
 color: white;
 padding: .5em 2em;
 border: none;
 border-width: 2px 0;
 border-style: solid none;
 border-color: #FDBE33 #000 #D77206;
 border-radius: 6px;
 background: linear-gradient(#F3AE0F, #E38916) #E38916;
 transition: 0.2s;
}
.button:hover {
	color: rgba(0,0,0,0.8);
	background: rgba(0,0,0,0.8);
	background-color: rgba(0,0,0,0.8);
	border-color: rgba(0,0,0,0.8);
	box-shadow: 0 -3px rgba(0,0,0,0.8) inset;
 transition: all 2s;
}
