#home-background-image {
  margin: 0;
  background: url("https://orange-diamond.github.io/Alchemon/images/home-bg-pokemon.jpg");
}

#main-logo {
  padding-top: 100px;
}

@-webkit-keyframes hvr-pulse {
    25% {
      -webkit-transform: scale(1.1);
      transform: scale(1.1);
    }
    75% {
      -webkit-transform: scale(0.9);
      transform: scale(0.9);
    }
  }
  @keyframes hvr-pulse {
    25% {
      -webkit-transform: scale(1.1);
      transform: scale(1.1);
    }
    75% {
      -webkit-transform: scale(0.9);
      transform: scale(0.9);
    }
  }
  img.hvr-pulse {
    display: inline-block;
    vertical-align: middle;
    max-width: 300px;
    margin-bottom: 70px;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  }
  .hvr-pulse:hover, .hvr-pulse:focus, .hvr-pulse:active {
    -webkit-animation-name: hvr-pulse;
    animation-name: hvr-pulse;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
  }

  h2 a {
      font-family: Arial, Helvetica, sans-serif;
      color: #FF7546;
      font-size: 60px;
      text-decoration: none;
  }

  h2 a:hover{
      color: #EFEB3E;
  }

  container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
  }
  
  #game-nav-bar {
    margin-top: 40px;
  }
  
  #main-low {
    animation: pulse 2s infinite;
    opacity: 1;
  }
  
  #main-low {
    animation: blinker 2s linear infinite;
  }
  
  @keyframes blinker {
    50% {
      opacity: 0;
    }
  }
  #play-main {
    padding-top: 90px;
    font-family: 'Press Start 2P', cursive;
  } 