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

body {
  font-family: 'Arial', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

/* Container */
.container {
  text-align: center;
  width: 100%;
  max-width: 400px;
  padding: 20px;
}

/* App Image */
.app-image {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* App Name */
.app-name {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #222;
  font-weight: bold;
}

/* Links Container */
.links-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Link Buttons */
.link-button {
  text-decoration: none;
  font-size: 1rem;
  color: #fff;
  background-color: #007bff;
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative; /* Enables positioning of the icon */
  gap: 10px;
  transition: all 0.3s ease;
  font-weight: bold;
}

/* Icon Styling */
.link-button i {
  font-size: 1.5rem;
  position: absolute; /* Fixes the icon's position */
  left: 20px; /* Consistent spacing from the left */
}

/* Text Styling */
.link-button span {
  text-align: center; /* Centers the text */
  flex-grow: 1; /* Ensures text occupies the right space */
}

/* Hover Effects */
.link-button:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

/* Specific Colors for Each Link */
.link-button:nth-child(1) {
  background-color: #000;
}

.link-button:nth-child(2) {
  background-color: #34a853;
}

.link-button:nth-child(3) {
  background-color: #0073e6;
}

.link-button:nth-child(1):hover {
  background-color: #333;
}

.link-button:nth-child(2):hover {
  background-color: #2a9444;
}

.link-button:nth-child(3):hover {
  background-color: #005bb5;
}
