html, body {
  background: #000;
}

a, p {
  color: #fff;
  font-family: 'IBM Plex Sans', sans-serif;
}

header {
  padding: 20px 0 0;
  margin: 0;
}

.logo {
  margin-top: 40px;
}
main {
  margin-top: 40px;
  padding-bottom: 90px;
  min-height: calc(100vh - 150px);
}


.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 310px;
  padding: 16px 40px 20px;
  background: #8FFF7C;
  -webkit-box-shadow: inset 0px -4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: inset 0px -4px 0px rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  font-size: 24px;
  margin: 20px auto 20px;
  line-height: 31px;
  color: #000000;
}

.button img {
  width: 24px;
  margin: 0px 10px -5px -10px;
}

.button:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  text-decoration: none;
  color: #000;
  opacity: 0.7;
}

a:hover {
  color: #ccc;
}
/*# sourceMappingURL=style.css.map */