body {
  margin:0;
  background:#000;
  color:#fff;
  font-family:'Onest', sans-serif;
}
.App {
  display:flex; justify-content:center; align-items:center;
  height:100vh; padding:15px;
}
.HomePage {
  width:100%;
  max-width:400px;
  text-align:center;
}
.HomePage__logo svg {
  width:120px; margin:0 auto 20px;
}
.HomePageBottom {
  background:#111;
  border-radius:12px;
  padding:30px;
  box-shadow:0 2px 10px rgba(0,0,0,0.5);
}
.HomePageBottom h2 {
  font-size:1.6rem; margin-bottom:10px;
}
.HomePageBottom p {
  font-size:1rem; color:#ccc; margin-bottom:20px;
}
.Button, .Button.primary {
  background:#3390ec;
  color:#fff;
  border:none;
  border-radius:8px;
  padding:14px;
  font-size:1rem;
  width:100%;
  margin-bottom:15px;
  cursor:pointer;
  transition:background .2s;
}
.Button:hover {
  background:#287bd1;
}
.plans {
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
  margin-bottom:20px;
}
.plan {
  background:#1a1a1a;
  padding:15px;
  border-radius:8px;
  border:1px solid #333;
}
.plan.popular {
  border:2px solid #3390ec;
  background:#222;
}
