body {
background-image: url("https://th.bing.com/th/id/OIP.1GS7RLYH__-aFzdHSGC4rAHaD5?w=305&h=180&c=7&r=0&o=5&pid=1.7");
  background-size: cover;
  background-repeat: none;
}

#content {
  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: "Comic Sans MS";
  color: black;
}

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

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

#content {
  flex-direction: row;
}

#container {
  display: flex;
  flex-direction: column;
  align-items:center;
  background: white;
  overflow: hidden;
  margin: 15px;
  padding: 4vw;
  max-width: 90vw;
}