* {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  background-color: #F0EDE7;
  font-family: "Crimson Pro", serif;
  height: 100%;
  min-height: 100vh;
  color: #243740;
  line-height: 1.4;

  background-color:hsla(40,23%,92%,1);
  background-image:
  radial-gradient(at 63% 54%, hsla(22,22%,74%,1) 0px, transparent 50%),
  radial-gradient(at 84% 79%, hsla(55,29%,81%,1) 0px, transparent 50%),
  radial-gradient(at 0% 99%, hsla(11,45%,82%,1) 0px, transparent 50%);
}


h1 {
  margin-top: 2em;
  margin-bottom: 0.2em;
}

h2 {
  margin-top: 0;
  font-weight: 400;
}

ul {
  list-style: none;
  font-size: 20px;
  padding-left: 0;
  margin-bottom: 2rem;
}

.container {
  max-width: 1000px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 2em;
}

.app-image {
  margin-top: 40px;
  max-width: 200px;
  display: flex;
  align-items: center;

  img {
    max-width: 100%;
  }
}

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

  .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .app-image {
    margin-top: 0;
    max-width: 340px;
  }
}