body {
    background: rgb(206, 243, 255);
    font-family: 'Roboto', sans-serif;
  }
  
  .header-card-wish{
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin: 20px 0;
    text-align: center;
    position: relative;
    overflow: hidden;

    .header-card-wish__title{
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 10px;
    }
  }
  svg {
    width: 25%;
    display:block;
    margin: 0 auto;
    #whole-flower {
      animation: bounce 1s ease-in-out -5s both infinite;
    }
  }
  
  @keyframes bounce{
    50% {transform:translateY(20px);}
    100%{transform:translateY(0px);}
  }

  @media screen and (max-width: 768px) {
    svg{
        width: 50%;
    }
  }