/* Home Grid */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
  grid-auto-rows: 1fr;
}

.grid::before {
  content: '';
  width: 0;
  padding-bottom: 100%;
  grid-row: 1 / 1;
  grid-column: 1 / 1;
}

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

.grid > div {
  padding:10px;
  border: 1px white solid;
  margin:5px;
  background: rgba(0,0,0,0.1);
  position: relative;
  height:210px;
  border-radius: 10px;
  width: 150px;
  overflow: hidden;
}

.grid > div:hover {
  cursor: pointer;
  border: 1px darkgray solid;
}

.grid > div > .title {
  font-size: 35px;
  text-align: center;
  font-weight: 1000;
  opacity: .9;
}

.grid > div > .status {
  font-size: 12px;
  font-weight: 200;
  opacity: .5;
  bottom: 0;
  width:90%;
  text-align: right;
  margin-bottom: 5px;
  position: absolute;
}

.grid > div > .add-icon {
  width:50%;
  position: absolute;
  top: 0;
  bottom: 0;
  right:0;
  left:0;
  margin: auto;
  opacity: .4;
}

@media only screen and (max-width: 600px) {
  /* For mobile phones: */
  .grid {
    grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr)) !important;
    margin-bottom: 10%;
  }
  
  .grid > div {
    height:auto !important;
    width: auto !important;
    padding:0px !important;
  }
  
}