body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: black;
  font-family: Arial, sans-serif;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 80px;
  height: auto;
  margin-bottom: 60px;
}

.download-btn {
  font-family: "Rubik", Arial, sans-serif;
  background-color: #a7d132;
  color: black;
  padding: 10px 40px;
  font-size: 18px;
  font-weight: 500;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.download-btn:hover {
  background-color: #8fb82b;
}

nav {
  margin-bottom: 20px;
}

.nav-link {
  color: #a7d132;
  text-decoration: none;
  margin: 0 10px;
  font-size: 16px;
}

.nav-link:hover {
  text-decoration: underline;
}

h1 {
  color: #a7d132;
  margin-bottom: 20px;
}
