@charset "UTF-8";

body{
	font-family:Arial, sans-serif;
	-webkit-font-smoothing:antialiased;
    background-image: url("../img/d1.jpg");
    background-color:rgba(255,255,255,0.8);
    background-blend-mode:lighten;
}


#wrapper{
	max-width:800px;
	margin:0 auto;
	
}

.bigbox {
display:flex;
flex-wrap: wrap;
}

h1{
	margin:40px 0;
	color:#555;
	font-size:4em;
}

button{
	font-size:1em;
	margin-right:10px;
	margin-bottom: 10px;
	display:block;
	color:#eee;
	padding:10px 25px;
	background:#20b2aa;
	border-radius:20px;
	border:none;
	display:inline-block;
	cursor:pointer;
    
    position: relative;
  display: inline-block;
  font-weight: bold;
  padding: 8px 10px 5px 10px;
  text-decoration: none;
  color: #FFA000;
  background: #fff1da;
  border-bottom: solid 4px #FFA000;
  border-radius: 15px 15px 0 0;
  transition: .4s;
}

#buttons button:last-child{
	margin-right:0;
}

button:focus{
	outline:none;
}

button:hover{
	background:#717171;
}

#list{
	margin-right:-20px;
	padding-top:5px;
}

#list li{
	margin-right:20px;
	margin-bottom:25px;
	width:150px;
	height:150px;
	list-style-type:none;
	float:left;
}



.btn-top-radius:hover {
  background: #ffc25c;
  color: #FFF;
}


.img_wrap{
  border: 1px solid #ddd;
  width: 150px;
  height: 150px;
  margin: 20px auto 0;
  transition-duration: 0.5s;
}
.img_wrap img{
  width: 100%;
  cursor: pointer;
}
.img_wrap:hover{
  box-shadow: 10px 10px 10px rgba(0,0,0,0.5);
  transform: translateY(-10px);
  transition-duration: 0.5s;
}