body {
    background:#270F34;
}

css-doodle {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
    height: 1220px;
    width: 100%;
    position: absolute;
    top: 0%;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
}

.ripple {
    --index: 0;
    width: 10px;
    height: 10px;
    opacity: 0;
    transform: scale(0);
    background: #FB3569;
    border-radius: 50%;
    position: fixed;
}

.animate {
  animation: ripple-mo 1s cubic-bezier(0, 0, 0.2, 1);
}
@keyframes ripple-mo {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(10);
    opacity: 0;
  }
}
