body {
  display: flex;
  align-items: center;
  justify-content: center;
}

.main {
  width: 1000px;
}

p {
  line-height: 25px;

  &:not(:last-child) {
    margin-bottom: 15px;
  }
}

.catch-phrase {
  font-size: 150%;
}

.spacing {
  height: 3em;
}

.side-by-side {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  column-gap: 2em;
  align-items: start;
  margin-top: 2em;
}

.text {
  flex: 1;
  align-items: center;
  text-align: start;
}

.heading {
  width: 150px;
  margin-top: 1em;
}

.feature {
  flex: 1;
}

.section {
  margin: 1em 0 0 0;
}

@media screen and (max-width: 1200px) {
  .main {
    width: 1000px;
  }
}

@media screen and (max-width: 800px) {
  .main {
    width: 100%;
  }

  .side-by-side {
    flex-direction: column;
  }

  .section,
  .text {
    width: 100%;
  }

  .heading {
    margin-top: 0;
    margin-bottom: 15px;
    width: 100%;
  }
}

b {
  font-weight: 1000;
}

body {
  display: flex;
  justify-content: center;
  height: 100vh;
}
