:root {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #e8e8e8;
  background: #0d0d0d;
}

a {
  color: #fcb900;
}

h1,
h2,
h3,
h4 {
  color: #fff;
}

main {
  max-width: 42rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}

h1 {
  text-align: center;
  margin-bottom: 0;
}

.subtitle {
  text-align: center;
  margin-top: 0.5rem;
  font-weight: 400;
  color: #999;
}

.video {
  margin: 2rem 0;
}
.video video {
  width: 100%;
  height: auto;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}
.buttons .button {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border: 1px solid #fcb900;
  text-decoration: none;
  font-weight: 700;
}
.buttons .button:hover {
  background: #fcb900;
  color: #0d0d0d;
}

.centered {
  text-align: center;
}
.centered strong {
  margin: 0 0.5rem;
}

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