.projectcolumn {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 50px;
}
.cell {
  box-sizing: border-box;
  width: 23%;
  height: 400px;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.26) 0px 1px 4px;
  margin: 0px 1% 30px 1%;
  overflow: hidden;
  transition: 0.3s;
  text-decoration: none;
  color: #000;
}
.cell img {
  height: 70%;
  object-fit: cover;
}
.cell:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.projectdescription {
  width: 100%;
  height: 25%;
  padding: 0px 10px 10px 10px;
  font-size: 14px;
  line-height: 1.2;
  position: relative;
}
.readmore {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 15px 10px;
  color: #808080;
  font-style: italic;
  font-weight: normal;
  font-size: 14px;
  text-decoration: none;
}
h2 {
  margin-bottom: 0px;
}

/* Responsive stuff */
@media screen and (min-width: 781px) and (max-width: 1166px) {
  .cell {
    width: 31.33333%;
  }
}
@media screen and (min-width: 781px) and (max-width: 860px) {
  h2 {
    font-size: 20px;
  }
}
@media screen and (min-width: 501px) and (max-width: 780px) {
  .cell {
    width: 48%;
  }
}
@media screen and (max-width: 500px) {
  .cell {
    width: 90%;
    margin: 0px 5% 30px 5%;
  }
}
