.blog_menu_draw-svg__xgxFa path {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: blog_menu_draw__C_e_c 2s ease forwards;
}

.blog_menu_card__NEMVn {
  opacity: 0;
  transform: scale(0.5);
  animation: blog_menu_flash__b7pb_ 2s ease forwards;
  animation-delay: 1.5s;
}

.blog_menu_data_stream__EWJbp {
  position: absolute;
  right: 40px;
  top: 120px;
  color: #17d906;
  font-size: 20px;
  font-family: monospace;
  opacity: 0.7;
  animation: blog_menu_dataScroll__azlYL 2s linear infinite;
}

@keyframes blog_menu_draw__C_e_c {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes blog_menu_flash__b7pb_ {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  70% {
    opacity: 1;
    transform: scale(1.2);
    box-shadow: 0 0 20px 5px yellow;
  }
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
}

@keyframes blog_menu_dataScroll__azlYL {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  90% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(-120px);
    opacity: 0;
  }
}

