body {
    display: flex;
    justify-content: center;
    align-items: center;
    height:100vh;
    font-family: Arial, sans-serif;
  }
  
  .app-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .app-button {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 1.2rem;
    color: white;
    border-radius: 5px;
  }
  .hide {
    display: none;
}

  .apple {
    background-color: #1051c9;
    
  }
  .google {
    background-color: #af2010;
  }
  .background-image {
    
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url('/img/GKBackground.jpg') no-repeat center center ;
    background-size: cover ;

    
}

.foreground-image {
  position:relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%; /* Adjust this value as needed */
  z-index: -1;
  background-size:cover;
  opacity: 0;
  animation: fadeIn 5s ease-in-out forwards;
  
}
@keyframes fadeIn {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}