#sticky-div {
 background: black;
  font-family: Boldonse, fantasy;
  color: white;
  position: sticky;
  top: 15px;
  border: solid, #8307A0, 5px;
  text-align: center;
}
body {
  background-image: linear-gradient(#D3D2ED, #80009E, #D3D2ED, #80009E);
  font-family: Montserrat, sans-serif;
  color: white;
}

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

.card{
  display: flex;
  flex-direction: column;
  background: black;
  overflow: hidden;
  margin: 15px;
  padding: 5em;
  max-width: 90vw;
}
@media(min-width: 992px) {
  .card {
    max-width: 20vw;
  }
}
@media(min-width: 1400px) {
  .card{
    max-width: 40vw;
  }
}
.content {
  padding: 1em, 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2em;
  border: double, 10px, #8307A0;
}
.image{
 width: 100%;
}
.title{
 font-size: 1em;
  font-weight: bold;
  font-family: Boldonse, fantasy;
  font-size: 20px;
  color: white;
  text-align: center;
}
