html {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Liberation Sans, Helvetica Neue, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji;
  padding: 0;
  margin: 0;
}

body {
  padding: 0;
  margin: 0;
}

.grid {
  display: grid;
  grid-template-columns: auto minmax(1fr, 1200px) auto;
}
.grid__top {
  background-color: #0f191f;
}
.grid__bottom {
  background-color: lightgrey;
  background-image: url(noise.png);
}

.top {
  position: relative;
  min-height: 1500px;
  background: url(screenshot.png) no-repeat center top 10em;
  color: white;
  text-align: center;
}
.top > span {
  font-size: 2em;
}
.top > h1 {
  margin: 0.2em 0;
  font-size: 5em;
  text-align: center;
}
.top > .top_buttons {
  position: absolute;
  bottom: 0;
  text-align: center;
  left: 50%;
  transform: translate(-50%, 0);
}
.top > .top_buttons > .btn {
  display: inline-block;
  font-size: 2em;
  border: 1px solid black;
  width: 10rem;
  text-align: center;
  margin: 1em;
  padding: 0.5em;
  font-size: 2em;
  color: black;
  user-select: none;
  text-decoration: none;
}
.top > .top_buttons > .btn__about {
  background: royalblue;
}
.top > .top_buttons > .btn__about:hover {
  background-color: lightblue;
}
.top > .top_buttons > .btn__code {
  background: yellow;
}
.top > .top_buttons > .btn__code:hover {
  background-color: lightyellow;
}

h2 {
  font-size: 4rem;
}

.middle {
  position: relative;
  font-size: 1.5em;
  padding-bottom: 2em;
}
.middle > div {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}
.middle > div > div {
  flex: 50%;
  max-width: 600px;
  display: inline-block;
  padding: 0 1em;
  box-sizing: border-box;
}
.middle > h2 {
  text-align: center;
}

.bottom {
  position: relative;
}
.bottom > ul > li {
  position: relative;
  z-index: 1;
}
.bottom > ul > li:not(:first-child) {
  padding-top: 2em;
}
.bottom > ul > li::marker {
  font-size: 1em;
  color: white;
}
.bottom > ul > li:first-child:after {
  border-radius: 1em 1em 0 0;
}
.bottom > ul > li:last-child:after {
  border-radius: 0 0 1em 1em;
}
.bottom > ul > li:after {
  content: "";
  z-index: -1;
  width: 1em;
  height: 100%;
  border: 1em;
  background: green;
  position: absolute;
  top: 0;
  left: -1.2em;
}
.bottom li {
  font-size: 2rem;
}

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