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

.card {
  box-shadow: 5px 5px 5px lightsteelblue;
  box-shadow: 5px 5px 5px lightslategray, 5px 5px 5px darkslategray;
  border-radius: 9%;
  display: flex;
  flex-direction: column;
  background: white;
  overflow: hidden;
  margin: 15px;
  padding: 1vw;
  max-width: 90vw;
}

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

.bubble{
  box-shadow: inset 3px 3px 3px lightsteelblue;
  border-radius: 60%;
  flex-direction: column;
  background: radial-gradient(ellipse, aquamarine, aqua, turquoise, aqua);
  overflow: hidden;
  margin: 1px;
  padding: 1vw;
  max-width: 90vw;
}

#cliptext {
  background: linear-gradient(9deg, white, silver, white);
    green, black, navy, green);
    teal, turquoise, silver, violet, aqua, teal, gold, aquamarine, turquoise);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 60px;
  color: transparent;
}

body {
  background-image: linear-gradient(80deg, pink, lightblue, yellow, pink);
}


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


.image {
  width: 100%;
  height: 100%;
}

.title {
  font-size: 1.5em;
  font-weight: bold;
  font-family: "Merriweather Sans", sans-serif;
  color: #000;
}

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

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