.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  max-width: 900px;
  margin: auto;
}

.tile {
  background: #222;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  text-decoration: none;
  color: white;
  transition: background 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.tile:hover {
  background: #333;
}

.tile img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

.tile h2 {
  margin: 0.5rem 0 0.2rem;
  font-size: 1.25rem;
}

.tile p {
  color: #ccc;
  font-size: 0.95rem;
}

.tagline{
  font-style: italic;
  margin-top: 0.5rem;
  text-align: center;
}

.h1 {
    text-align: center;
}

