.about_more {
    border: none;
    font-family: sans-serif;
    font-size: 17px;
    background: transparent;
    color: #006bb3;
    /* border: solid 1px rgba(0, 107, 179, 0.2); */
    padding: 10px;
    /* border-radius: 4px; */
    transition-duration: 0.2s;
   }
   
   .about_more:before {
    content: "»";
    opacity: 0;
    margin-left: -15px;
    transition-duration: 0.2s;
   }
   
   .about_more:hover:before {
    margin-left: 0px;
    opacity: 1;
   }
   
   .about_more:hover {
    color: black;
    background: rgba(0, 0, 0, 0.02);
    /* border: solid 1px gainsboro; */
   }
   
   /*  cards */
   
   #content {
  width: 250px;
  height: 300px;
  box-shadow: 0 0 30px 5px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  z-index: 1;
  display: flex;
  background-color: white;
  border-radius: 15px;
}

.blob {
  flex-shrink: 0;
  flex-basis: 1;
  width: 230px;
  height: 230px;
  position: relative;
  z-index: 1;
  border-radius: 50%;
  color:black;
}




.blob:nth-child(5) {
  top: 190px;
  left: -820px;
  background-color: #ccaf85;;
  animation: wave 1.5s infinite alternate;
  animation-delay: 1.5s;
}

#blurer {
color:black;
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(40px);
  flex-shrink: 0;
  flex-basis: 1;
  border-radius: 15px;
}

#article {
  position: relative;
  width: 95%;
  height: 100%;
  flex-shrink: 0;
  flex-basis: 1;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 10;
  justify-self: center;
  align-self: center;
  border-radius: 15px;
  left: -1157px;
  /*display: flex;*/
  justify-content: center;
  align-items: start;
}

@keyframes wave {
  0% {
    transform: translateY(-30px);
  }

  50% {
    transform: translateY(30px);
  }

  100% {
    transform: translateY(-30px);
  }
}

#article h1 {
  padding: 20px 10px;
  color: #303030;
  font-size: 3em;
  font-family: 'Caveat', cursive;
}

   