body {
  margin: 0;
  background-image: url(images/bg-picture.svg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: top 150px right 0;
  background-size: 760px;
}

.container {
  max-width: 1200px;
  width: 83%;
  margin: auto;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

header {
  display: flex;
  justify-content: space-between;
  height: 80px;
  position: fixed;
  width: 83%;
  max-width: 1200px;
  background-color: #fff;
  z-index: 3;

  .left {
    display: flex;
    gap: 50px;
    align-items: center;


    span {
      display: flex;

      a {
        font-family: Tourney, sans-serif;
        font-weight: 600;
        line-height: 18px;
        font-size: 22px;
      }
    }

    nav {
      display: flex;

      ul {
        display: flex;
        gap: 10PX;

        li {
          font-family: Staatliches, sans-serif;
          font-weight: 400;
          font-size: 22px;
        }
      }
    }
  }

  .right {
    padding-block: 13px;
  }
}

h2,
p {
  margin: 0;
}

main {
  padding-top: 80px;
  padding-bottom: 90px;
  display: flex;
  gap: 30px;
}

aside {
  padding-top: 70px;
  width: 33%;

  ul {
    display: flex;
    flex-direction: column;
    gap: 70px;
    font-family: Francois One, sans-serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 48px;
    text-transform: uppercase;
    position: sticky;
    top: 150px;

    a {
      display: inline-block;
      padding: 10px;
    }

  }
}

.content {
  width: 67%;
}

section {
  font-family: PT Sans, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 48px;

  h2 {
    font-family: Francois One, sans-serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 48px;
    text-transform: uppercase;
    padding-top: 100px;
    position: relative;

    &::before {
      content: "";
      position: absolute;
      top: 70px;
      height: 8px;
      width: 100px;
      background-color: black;


    }

    &::after {
      font-family: Farro, sans-serif;
      font-size: 30px;
      font-weight: 300;
      top: 70px;
      position: absolute;
    }
  }

  &:nth-of-type(1) {
    h2 {
      &::after {
        content: "Chapter 1";
      }
    }
  }

  &:nth-of-type(2) {
    h2 {
      &::after {
        content: "Chapter 2";
      }
    }
  }

  &:nth-of-type(3) {
    h2 {
      &::after {
        content: "Chapter 3";
      }
    }
  }

  &:nth-of-type(4) {
    h2 {
      &::after {
        content: "Chapter 4";
      }
    }
  }

  p,
  li {
    padding-top: 40px;
  }

  .bg {
    background-color: #d4d4d4;
  }
}