html, body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #ccc;
}

* {
  box-sizing: border-box;
}

.hero {
  min-height: 360px;
  height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero h1, .hero p {
  margin: 0;
}
.hero h1 {
  color: #fff;
}

.card {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}
.card .container {
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: #000;
  position: relative;
  z-index: 10;
}
.card h2, .card p {
  margin: 0;
}
.card h2 {
  margin-bottom: 1.5em;
}
.card::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  box-shadow: 0 0 100px #fff;
  z-index: 5;
}

footer {
  width: 100%;
  padding: 80px 10px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer a {
  font-size: 12px;
  text-decoration: underline;
  color: #fff;
}

/*# sourceMappingURL=style.css.map */
