@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #333333;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  justify-content: center;
}

.hero {
  text-align: center;
  margin-bottom: 60px;
}

.hello {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0;
}

.cursor {
  display: inline-block;
  animation: blink 1s infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.title {
  font-size: 1.5rem;
  color: #555;
  margin-top: 10px;
}

.brand {
  color: #0077ff;
  font-weight: 600;
}

.cards {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background-color: white;
  border-radius: 16px;
  padding: 25px 40px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 220px;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.card h3 {
  margin: 0;
  font-size: 1.3rem;
  color: #222;
}

.card p {
  margin-top: 6px;
  font-size: 0.95rem;
  color: #666;
}
