@font-face {
    font-family: Neue Haas;
    src: url("fonts/neuehaasgroteskregular-webfont.woff2") format("woff2"),
      url("fonts/neuehaasgroteskregular-webfont.woff") format("woff");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: Recoletta;
    src: url("fonts/recoleta-semibold-webfont.woff2") format("woff2"),
      url("fonts/recoleta-semibold-webfont.woff") format("woff");
    font-weight: 500;
    font-style: normal;
  }
  
  @font-face {
    font-family: Neue Haas;
    src: url("fonts/neuehaasgroteskmedium-webfont.woff2") format("woff2"),
      url("fonts/neuehaasgroteskmedium-webfont.woff") format("woff");
    font-weight: 700;
    font-style: normal;
  }


  * {
    box-sizing: border-box;
  }
  h1,
  h2,
  h3,
  h4 {
    font-family: Recoletta;
    font-weight: 500;
    color: white;
    margin:0;
  }
  

p {
    font-family: Neue Haas;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: white;
    margin:0;
  }

  h1 {
    font-size: 48px;
    line-height: 56px;
    color: var(--red);
  }
  
  h2 {
    font-size: 32px;
    line-height: 40px;
  }
  
  h3 {
    font-size: 24px;
    line-height: 32px;
  }
  
  h4 {
    font-size: 18px;
  }
  
  h5 {
    font-family: Neue Haas;
    font-size: 16px;
  }

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    background-color: #222;
    transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  }
  
  .privacy-wrapper {
    margin-top:80px;
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
    display:flex;
    flex-direction: column;
  }

  .privacy-body {
    padding-top:40px;
    display:flex;
    flex-direction: column; 
    row-gap:24px;
  }