.circle {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  position: absolute;
  width: 15vw;
  height: 15vw;
  border-radius: 40% 60% 70% 30%/40% 50% 60% 50%;
  overflow: hidden;
  animation: morph 6s linear infinite;
  transition: transform 0.3s, width 0.3s, height 0.3s;
  z-index: 20;
  background-color: rgba(118, 173, 161, 0.5);
  cursor: pointer;
  transition: all 0.5s;
}

.circle img {
  width: 100%;
  object-fit: cover;
}

.circle.expanded {
  cursor: auto;
  overflow: hidden;
  position: fixed;
  top: -8vh !important;
  left: -8vw !important;
  width: 90vw;
  height: 100vh;
  border-radius: 0;
  z-index: 30;
  background-color: rgba(118, 173, 161, 0.8);
  padding-left: 20vw;
  padding-top: 20vw;
}
