* {
  box-sizing: border-box;
}

.box {
  background-color: #fff;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 30px;
  max-width: 1000px;
  width: 75%
}

body {
  background-color: #eee;
  justify-content: center;
  display: flex;
  padding-top: 20px;
  font-family: 'Roboto', sans-serif;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 2fr));
  grid-gap: 20px;
}

.grid :first-child {
  grid-column: 1 / -1;
}

.grid > article {
  border: 1px solid #ccc;
  box-shadow: 2px 2px 6px 0px rgba(87, 206, 53, 1);
  padding: 5% 0;
  border-radius: 20px;
  background: linear-gradient(to bottom, #00db93, #00b97d);
}

.grid > .fake {
  background: linear-gradient(to bottom, #db0043, #b9002d);
  box-shadow: 2px 2px 6px 0px rgba(206, 21, 53, 1);
}

.grid .text {
  padding: 10px 20px 20px 30px;
  color: black;
  margin-bottom: 20px;  
}

.grid .btn {
  margin-top: 20px;
  background-color: #e0d4e9;
	border: 0;
	border-radius: 5px;
	color: #000;
	font-size: 15px;
	padding: 5px 10px 5px 10px;
  line-height: 5;
  font-family: 'Roboto', sans-serif;
  text-decoration: none;
  
}

.btn:hover {
  background: #d1d3d4;
  transition-duration: 80ms;
}

h3{ 
  color: #000;
  text-align: left;
}

