.center{
  padding: 5px;
	display: flex;
	flex-direction: column;
	height: 500px;
	width:auto;
	text-align:center;
	justify-content: space-around;
	transition-duration: 0.6s;
}
.center:hover{
	background-color: white;
	box-shadow: 5px 10px 8px #888888;
}

.button{
	background-color: white;
	color: #30babd;
  border: 2px solid #ff6400;
  padding: 15px 32px;
  text-decoration: none;
  font-size: 16px;
  margin-bottom: 20px;
	transition-duration: 0.4s;
}
.button:hover {
  background-color: #ff6400;
  color: white;
}

.text-info{color:#30babd; font-size: 28px; font-weight:lighter; margin-top: 20px;}


.textsamenvatting{
	font-size: 17px; 
	font-weight:100;
}

@media only screen and (max-width: 800px) {
  .center{ 
		margin-bottom: 50px;
		height: 350px;
  }