body {
	background-image: linear-gradient(blue, darkblue, navy, black);
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
#container {
	display: flex;
  flex-flow: wrap;
  justify-content: center;
}
.card{
 display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  overflow: hidden;
  margin: 15px;
  padding: 2vw;
  max-width: 90vw;
}
.image{
  width: 100%;
  height: 100%;
}
.title{
  font-size: 1.5em;
  font-weight: bold;
  font-family: "Merriweather Sans", sans-serif, Arial;
  color: black;
}

@media (min-width: 700px) {
  .card{
    max-width: 40px;
  }
}

@media (min-width: 1100px) {
  .card {
    max-width: 20vw;
  }
}