* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  width: min(90%, 1200px);
  margin: 0 auto;
}

ul li {
  list-style: none;
}

a {
  color: black;
}


body {
  font-family: 'PT Sans';
  font-size: 1.75rem;
}

.pt-sans-italic {
  font-style: italic;
}

.pt-bold {
  font-weight: 700;
}

.staatliches {
  font-family: 'Staatliches';
  font-size: 1.375rem;
  letter-spacing: 3%;
}

.tourney {
  font-family: 'Tourney';
  font-weight: 600;
  font-size: 1.375rem;
  letter-spacing: 6%;
  text-transform: uppercase;
  line-height: 1.125rem;
  margin-left: 2px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 13px 0;
  background-color: #fff;
  z-index: 1;
  margin-bottom: 70px;
}


nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  
  ul {
    display: flex;
    gap: 50px;
    margin-top: 5px;
    align-items: baseline;
    
    a {
      text-decoration: none;
    }
    
    .staatliches span {
      margin: 0 10px;
    }
  }
}

main {
  margin-top: 150px;
}
section {
  margin-bottom: 66px;

  h2 {
    font-family: "Francois One", sans-serif;
    font-size: 2.25rem;
    line-height: 2.25rem;

    letter-spacing: 4%;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 40px;


    sup {
      font-family: "Farro", sans-serif;
      font-weight: 300;
      font-size: 1.125rem;
      letter-spacing: 4%;
      text-transform: none;
      margin-left: 10px;
      position: relative;
      top: -11px;
    }
  }

  p {
    font-size: 1.75rem;
    line-height: 48px;
    margin-bottom: 29px;
  }

  ul li {
    margin-bottom: 40px;
    line-height: 2.9rem;
  }
}


.text-gray {
  background-color: #dadada;
}

.heading-first-section, .heading-last-section{
  margin-bottom: 46px;
}