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

body,
html {
  height: 100%;
  font-family: Arial, sans-serif;
  background: #121212; /* Dark background */
  color: #f1f1f1;
}

.center-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.download-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 400px;
  height: 120px;
  padding: 1.5rem;
  background: #1e1e1e; /* Slightly lighter dark */
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  text-decoration: none;
  color: #f1f1f1;
  transition: transform 0.2s, background 0.2s;
}

.download-item:hover {
  transform: translateY(-5px);
  background: #2a2a2a; /* Subtle hover effect */
}

.download-item .img img {
  width: 60px;
  height: 60px;
}

.download-item .con h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.download-item .con p {
  font-size: 0.9rem;
  color: #bbb; /* Softer text color */
}
.mx-auto {
    margin-left: auto;
    margin-right: auto
}