


/* Logo animation */
.puff-in-center {
    width: 60%;
  margin: auto;
  display: block;
  /* width: 70vw; */
  width: 300px;

  
  /*
  -webkit-animation: puff-in-center 0.3s cubic-bezier(0.470, 0.000, 0.745, 0.715) both;
	        animation: puff-in-center 0.3s cubic-bezier(0.470, 0.000, 0.745, 0.715) both;
         */
    -webkit-animation: puff-in-center 0.3s linear 0.3s both;
	        animation: puff-in-center 0.3s linear 0.3s both;
}

@-webkit-keyframes puff-in-center {
  0% {
    -webkit-transform: scale(4);
            transform: scale(4);
    -webkit-filter: blur(10px);
            filter: blur(10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;

  }
}
@keyframes puff-in-center {
  0% {
    -webkit-transform: scale(4);
            transform: scale(4);
    -webkit-filter: blur(10px);
            filter: blur(10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
    
  }
}
