/*waves*/
#waves {
  position: relative;
  width: 100%;
  /* Set width as needed */
  height: 200px;
  /* Set height as needed */
  margin-top: 50vh;
}
.flex-container {
  display: flex;
  flex-wrap: nowrap;
}
.mycell-container{
  width: 100%;
  height: 200vh;
  display: flex;
  flex-direction: row;
  padding-bottom: 10vh;
  flex-wrap: wrap;
  justify-content: space-around;
  background-color: #1a3d50;
  padding: 20px;
}

.mycell{
  width: 40vh;
  height: 40vh;
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 50%;
  border: 5px solid #ff9701;
  background-color: #fff;
  padding: 5px;
  align-items: center;
justify-content: center;
animation: float-text 10s ease-in-out infinite;
}

.mycell-title{
  font-size: 18px;
  font-weight: bold;
  color: #ff9701;
  text-align: center;
  width: 70%;
  font-size:1.7vh;
}

.mycell-text{
  width: 90%;
  height: auto;
  margin: 0;
  text-align: center;
  padding: 0px;
  font-size:1.6vh;
  /*shape-outside: circle();
  clip-path: circle(50% at 50% 50%);*/
}

.mycell:nth-child(even){
  align-self: flex-start; /* Align at the top */
}

.mycell:nth-child(odd){
  align-self: flex-end; /* Align at the bottom */
}

.content{
  padding: 0px;
}
.ground-container{
  margin-bottom: 0vh;
}