@charset "utf-8";

a.goTo { margin: 20px 0px; text-transform: uppercase; width: 50%; text-align: center; border-radius: 10px; text-decoration: none; animation-name: play_down; animation-duration: 1s; animation-iteration-count: infinite; background-color: rgb(1, 89, 153) !important; color: white !important; padding: 20px 30px !important; font-weight: 600 !important; border: none !important; }

@keyframes play_top { 
  0% { box-shadow: rgba(0, 163, 182, 0.6) 0px 0px; }
  100% { box-shadow: rgba(0, 163, 182, 0) 0px 0px 0px 20px; }
}

@keyframes play_down { 
  0% { box-shadow: rgba(55, 55, 55, 0.6) 0px 0px; }
  100% { box-shadow: rgba(55, 55, 55, 0) 0px 0px 0px 20px; }
}

@media (max-width: 800px) {
  .goTo { width: 100%; }
}
