/* Reset and Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #f4f4f4;
  color: #333;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

/* Header Styling */
header {
  background: #008080;
  color: white;
  padding: 50px 20px;
  width: 100%;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.tagline {
  font-size: 1.2rem;
  font-weight: 300;
}

/* Main Content */
main {
  flex: 1;
  width: 100%;
  max-width: 800px;
  padding: 20px;
}

/* Section Styling */
section {
  background: white;
  padding: 40px 20px;
  margin: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

/* Email Link */
.email-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 1rem;
  color: #008080;
  text-decoration: none;
  font-weight: bold;
}

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

/* Download Section */
#download p {
  font-size: 1rem;
  margin-bottom: 15px;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.download-icon {
  width: 180px; /* Set fixed width */
  height: 60px; /* Set fixed height */
  object-fit: contain; /* Ensures proper aspect ratio */
  transition: transform 0.2s ease-in-out;
}

.download-icon:hover {
  transform: scale(1.05);
}

/* Footer */
footer {
  width: 100%;
  background: #222;
  color: white;
  padding: 20px;
  font-size: 0.9rem;
}

.github-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 1rem;
  color: #fff;
  background-color: #008080;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.2s ease-in-out;
}

.github-link:hover {
  background-color: #555;
}
