


@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.35, 1.35, 1.35);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

body {
  margin-top:40px;

}

.pulse {
  animation-name: pulse;
  animation-fill-mode: both;
  animation-duration: 1s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
}

.v-application--wrap {

  min-height: unset;
}

.article {
  padding: 3% 15% 1% 15%;
  font-family: Arial, Helvetica, sans-serif;
}
 

