@charset "utf-8";

.goTo { margin: 10px 0px 20px; font-size: 20px; text-transform: uppercase; width: 50%; text-align: center; border-radius: 10px; font-weight: 700; animation-name: play_down; animation-duration: 1s; animation-iteration-count: infinite; cursor: pointer; background-color: rgb(0, 85, 153) !important; color: white !important; padding: 20px 26px !important; }

.goTo:hover { text-decoration: 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: 90%; }
}
