
/*CONTAINERS*/

.column{
  flex-direction: column;
  justify-content: center;
}

.wrap {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.group-data {
  top: -10vh;
}

/*HERO*/

.background-image {
  background-image: radial-gradient(circle, rgba(255,255,255,0), rgba(18,27,29,0.5)),url(../images/crowd.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/*CONTENT*/

.product-card {
  display: flex;
  flex-wrap: wrap;
  flex: 100%;
  height: auto;
  padding: 2rem;
  margin: 2rem 0rem;
}

.product-card h2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/*FOOTER*/

.footer-container a {
  color: white;
}

/*RESPONSIVE*/

@media screen and (max-width: 600px) {
  .title-container {
    justify-content: center;
    margin: 2rem;
  }

  .product-card {
    width: 100%;
    padding: 1rem;
  }
}
