* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Verdana', sans-serif;
  color: #fff;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

header {
  position: relative;
  height: 100vh;
  background-color: #2b2d30;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.header-content {
  z-index: 2;
}

.header-content .download-container {
	text-align: center;
    font-family: Arial, sans-serif;
    margin: 20px auto;
    max-width: 500px;
}

/* Gaya untuk judul narasi */
.download-title {
    font-size: 24px;
    font-weight: bold;
    color: #f2c55c;
    margin-bottom: 10px;
}

/* Gaya untuk deskripsi narasi */
.download-description {
    font-size: 16px;
    color: #f2c55c;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Gaya tombol download */
.download-button {
  text-decoration: none;
  display: inline-block;
}

/* Gaya untuk badge Google Play */
.google-play-badge {
  width: 200px;  /* Ukuran badge */
  height: auto;
  transition: transform 0.3s ease; /* Animasi transisi */
}

.google-play-badge:hover {
  transform: scale(1.05); /* Efek zoom ketika dihover */
}

footer {
  background-color: #f2c55c;
  color: black;
  padding: 20px 0;
  text-align: center;
}

footer p {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .google-play-badge {
    width: 180px;
  }
}
