.section-container, .lab-container {
	display: flex; 
	flex-wrap: wrap;
	margin: 0;
	justify-content: space-around;
}

.tile {
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	text-align: center; 
	width: 40%;
	-moz-box-shadow:     0 0 2px #eee;
   	-webkit-box-shadow:  0 0 2px #eee;
   	box-shadow:          0 0 2px #eee;
	transition: 0.3s;
  	background-size: 200% auto;
	margin: 5%;
	/*max-height: 25vh; this is causing weird overflow issues*/
	min-width: 300px;
	padding: 2%;
	border-radius: 10px;
	font-weight: bolder;
  color: #4b2e83;
	background-color: #fff;
  border: 3px solid;
  /*opacity: 0.8;*/
}

.tile:hover {
  border: 3px solid;
	background-color: #4b2e83;
  color: #fff;
}

.tile a {
  color: #4b2e83;
  border: 3px solid;
}

.tile-button-panel {
	display: flex;
	justify-content: space-around;
	width: 100%;
	max-height: 30%;
}

.tile-button {
	-moz-box-shadow:     0 0 2px #eee;
   	-webkit-box-shadow:  0 0 2px #eee;
   	box-shadow:          0 0 2px #eee;
   	background-color: white;
   	border-radius: 5px;
   	padding: 10%;
   	line-height: 10%;
   	border-bottom: 2px solid #dddddd;
}
.tile-button:active {
	transform: translate(0px,5px);
    -webkit-transform: translate(0px,5px);
    border-bottom: 2px solid white;
}

