.main_container{
  flex-direction: column;
  padding: 5%;
}
.notification {
  max-width:1500px;
}
#waves{
  margin-top: 70vh;
}
.body {
  background-color: blue;
}
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.imageflex { display: flex; flex-wrap: nowrap;}
.flex-container {
  display: flex;
  flex-wrap: nowrap;
}

.page-description{
  overflow: hidden;

}

body{
  overflow-x: hidden;
}

.mycell{
  width: 23vh;
  height: 23vh;
  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-container{
  width: 30vh;
  height: 70vh;
  display: flex;
  flex-direction: row;
  padding-bottom: 10vh;
  flex-wrap: wrap;
  padding: 20px;
}


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

.mycell-text{
  width: 100%;
  height: auto;
  margin: 0;
  text-align: center;
  padding: 5px;
  /*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 */
}