body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  margin: 0;
  padding: 20px;
  text-align: center;
}

h1 {
  color: #333;
  margin-bottom: 20px;
  font-size: 26px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  padding: 0 10px;
}

.card {
  background: #ffffff;
  color: #333;
  text-decoration: none;
  padding: 10px 5px;
  height: 100px; /* smaller height */
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: transform 0.2s, background 0.3s;
}

.card:hover {
  transform: translateY(-3px);
  background: #e0f7fa;
}

.card .icon {
  font-size: 36px; /* big icon */
  margin-bottom: 2px;
}

.card .label {
  font-size: 16px; /* bigger font */
  font-weight: bold;
}
