* {
  color: #ffffff;
  margin: 0px;
}

body {
  background-color: #000000;
  font-family: 'Roboto', sans-serif;
}

#hero {
  display: grid;
  height: 100vh;
  column-gap: 10vw;
  grid-template-columns: 3fr 2fr;
  background-color: #9146ff;
  overflow: hidden;
}

#hero > h1 {
  justify-self: end;
  align-self: center;
  text-align: right;
  font-weight: 900;
  font-style: italic;
  font-size: 6vw;
  padding-left: 30px;
}

#hero > img {
  justify-self: start;
  align-self: end;
  max-height: 100vh;
}

#hero-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

#hero-divider > svg {
  position: relative;
  display: block;
  width: calc(135% + 1.3px);
  height: 80px;
}

#hero-divider > svg > path {
  fill: #000000;
}

#features {
  max-width: 1000px;
  margin: 30px auto;
  padding: 0px 20px;
}

#features > h2 {
  text-align: center;
  font-family: 'Roboto Slab', serif;
  font-size: 4ch;
}

#features > div {
  margin-top: 20px;
  display: grid;
  column-gap: 5vw;
  row-gap: 25px;
  grid-template-columns: 1fr 1fr;
}

#features > div > div {
  padding: 20px;
  background-color: #333333;
  border-radius: 25px;
}

#features > div > div > img {
  float: left;
  margin-right: 10px;
}

#buttons {
  max-width: 200px;
  margin: 80px auto;
  padding: 0px 20px;
  text-align: center;
}

#buttons > a {
  text-decoration: none;
}

#buttons > a > svg {
  cursor: pointer;
}

#buttons > a > div {
  margin-top: 40px;
  padding: 10px;
  background-color: #333333;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
}

#buttons > p {
  font-weight: 100;
  font-style: italic;
}

@media only screen and (max-width: 650px) {
  #hero {
    grid-template-columns: 1fr;
    height: fit-content;
  }

  #hero > h1 {
    justify-self: center;
    text-align: center;
    padding: 30px 30px 0px;
    font-size: 12vw;
  }

  #hero > img {
    justify-self: center;
    max-height: auto;
    max-width: 80vw;
  }

  #hero-divider {
    display: none;
  }

  #features > div {
    grid-template-columns: 1fr;
  }
}
