body {
  margin: 0;
  background: var(--peach-100);

  > header {
    border-bottom: 4px solid var(--grey-800);
  }
}

@media screen and (min-width: 1200px) {
  body{
    zoom: 140%;
  }
}

main {
  overflow: hidden;
  background: linear-gradient(var(--peach-600), var(--peach-400));

  @media screen and (min-width: 768px) {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

#features {
  @media screen and (min-width: 768px) {
    display: grid;
    grid-template-rows: 375px;
    grid-template-columns: 375px 375px;
  }
}
