/* style.css */

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  color: #333;
}

.center-text {
  text-align: center;
}

h2 {
  font-size: 28px;
  color: #0066cc;
}

p {
  font-size: 16px;
  color: #666;
}

strong {
  color: #0066cc;
}

a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  border-bottom: 1px solid #0066cc;
}

.tagline {
  font-size: 18px;
  color: #0066cc;
  margin-bottom: 20px;
}

footer {
  margin-top: 20px;
  text-align: center;
  color: #999;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 20px;
  justify-content: center;
}

.app-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
}

.app-item img {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.app-label {
  text-align: center;
  margin-top: 5px;
  font-size: 14px;
}

.app-item a,
.app-item a:hover,
.app-item a:visited,
.app-item a img {
  text-decoration: none;
  border: none;
}
