html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: rgb(53, 39, 39);
  background-color: #fff7e0;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
}

main {
  display: flex;
  flex-direction: column;
  gap: 250px;
  margin: 100px auto;
  max-width: 1000px;
}

section {
  padding: 16px;
}

section h1,
section h2,
section h3,
section h4,
section h5,
section h6 {
  background: linear-gradient(0deg, rgba(30, 11, 0, 0.4), rgba(94, 36, 0, 0.4)),
    rgb(53, 39, 39);
  background-clip: border-box;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 16px;
  margin: 0;
}

img {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  margin-bottom: 1.75rem;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
