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;
  column-gap: 2em;
  align-items: start;
  margin-top: 2em;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.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;
    gap: 1.5em;
  }

  .even {
    flex-direction: column-reverse;
  }

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

b {
  font-weight: 1000;
}

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

.thumb,
.thumb img {
  height: 150px;
  width: 250px;
}

.thumb img {
  border-radius: 25px;
  border: 3px solid var(--fg-selected);
}