body {
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh; 
  margin: 0;
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  animation: slideshow 20s infinite;
}

@keyframes slideshow {
  0% {
    background-image: url('Images/hd.jpg');
  }
  25% {
    background-image: url('Images/BG.jpg');
  }
  50% {
    background-image: url('Images/EM.jpg');
  }
  75% {
    background-image: url('Images/jj.jpg');
  }
  100% {
    background-image: url('Images/gg.jpg');
  }
}

h1 {
  margin-bottom: 20px;
  font-size: 2rem;
  padding: 0 20px; 
}

.logo {
  width: 200px; 
  margin-bottom: 25px; 
  opacity: 0.8;
}

.button-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding: 0 20px;
}

.image-button {
  border: none;
  padding: 0;
  cursor: pointer;
  background: none;
}

.image-button img {
  display: block;
  width: 160px; 
  height: 70px; 
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.image-button img:hover {
  transform: scale(1.1);
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.5rem; 
  }

  .logo {
    width: 150px; 
  }

  .button-container {
    grid-template-columns: 1fr; 
    gap: 10px;
    padding: 10px; 
  }

  .image-button img {
    width: 120px;
    height: 60px;
  }
}
.footer {
  background-color: rgba(0, 0, 0, 0.5); 
  text-align: center;
  padding: 3px 0;
  position: fixed;
  width: 100%;
  bottom: 0;
  font-size: 1rem;
}