body {
  font-family: "segoe-ui", sans-serif;
 	background-image: linear-gradient(180deg, plum, lavender, skyblue);
  background-repeat: no repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

h1 {
	padding: 2vw;
  background-color: white;
  text-align: center;
  margin: 0 2vw;
  font-family: "Macondo Swash Caps", cursive;
  font-weight: 400;
  font-style: normal;
  position: sticky;
  font-size: 3em;
  top: 0;
  border-radius: 5px;
}

#title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 1px;
}

.card-container {
 	display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.card {
 	display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  overflow: hidden;
  margin: 10px;
  padding: 0.5em;
  max-width: 90vw;
  border-radius: 5px;
}

.content {
 	padding: 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image {
 	width: 100%;
  height: 100%;
  min-width: 100px;
}

@media (min-width: 576px) and (max-width: 768) {
  .card {
   	width: 40%;
  }
}

@media (min-width: 769px) and (max-width: 991px) {
  .card {
    width: 45%;
  }
}

@media (min-width: 992px) {
  .card {
    width: 20%;
  }
}
/*
	Bootstrap Breakpoints:
	576px, 768px, 992px, 1200px, 1400px
*/