body {
  background-image: url('images/night.jpg');
  background-size: cover; 
  background-position: center; 
  background-attachment: fixed; 
}

.background-image-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; 
}

#pokemon {
  font-family: "cofo-sans-pixel", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  font-size: 70px;
  padding-top: 25px;
  padding-bottom: 90px;
  color: white;
}

#pokemon2 {
  font-family: "cofo-sans-pixel", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  padding: 20px;
  font-size: 30px;
  color: white;
}

.pokemon-container {
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(0);
  }
}

#pokemon-image {
  width: 180px;
  height: 180px;
  padding: 150px;
  animation: float 2s ease-in-out infinite;
}