/*styling for the cards on the project page*/

.container {
	margin: 2vw;
}
.row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-gap: 15px;
	margin-top: 30px;
}
img {
	width: 100%;
	max-height: 250px;
	transition: 0.4s ease;
}
img:hover {
	transform: scale(1.1);
}
.card {
	height: 75vh;
	border-radius: 50px;
	border: solid 1px #DCDCDC;
	text-align: center;
	overflow: hidden;
	background: #FFF;
}
.card .card-body {
	box-sizing: border-box;
	padding: 10px;
	font-size: 0.9em;
	line-height: 1.5;
	color: # 585858;
}
.card h5 {
	font-weight: bold;
	font-size: 1.2em
}
.card p {
	margin: 10px 0;
}
button{
  user-select:none;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  cursor:pointer;
  border:none;
  border-radius: 50px;
  padding:8px;
  background:linear-gradient(141deg, #0fb8ad 0%, #1fc8db 51%, #2cb5e8 75%);
  box-sizing:border-box;
}
button a {
	text-decoration: none;
	color: #FFF;
}
.moreinfo {
	display: none;
}