* {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont;
}

body {
  margin: 0;
  background: #0b0b0d;
  color: #fff;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.hub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  width: 80%;
  max-width: 900px;
}

.card {
  background: #16181d;
  border-radius: 24px;
  padding: 60px;
  text-align: center;
  cursor: pointer;
  transition: 0.2s;
}

.card:hover {
  transform: scale(1.04);
  background: #1d2026;
}

.icon {
  font-size: 64px;
}

.title {
  font-size: 32px;
  margin-top: 20px;
}

.desc {
  color: #9aa0a6;
  font-size: 18px;
}
