body {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    line-height: 1.45;
    color: white;
  }
  .privacy-body {
    background-color: black;
  }
  .tos {
    /* top right bottom left */
    padding: 0% 25% 0% 25%;
  }
  .last-updated {
    color: grey;
  }
  table, th, td {
    border: 1px solid white;
  }
  a:link {
    color: white;
  }
/* start navbar */
.super-navbar.scrolled {
    -webkit-backdrop-filter: blur(20px) saturate(200%);
    backdrop-filter: blur(20px) saturate(200%);
    -webkit-box-shadow: 0 0 20px rgb(0 0 0 / 4%);
    box-shadow: 0 0 20px rgb(0 0 0 / 4%);
    
  }
  
  .super-navbar {
    padding: 0 var(--padding-right) 0 var(--padding-left);
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1)
  }
  
  .super-navbar.scrolled .super-navbar__content {
    height: 70px;
  }
  
  .super-navbar__content, .super-navbar__item {
    display: -moz-box;
    display: flex;
    -moz-box-align: center;
    align-items: center;
  }
  
  .super-navbar__content {
    height: 100px;
    -moz-box-pack: justify;
    justify-content: space-between;
    -webkit-transition: height .3s ease-in-out;
    -moz-transition: height .3s ease-in-out;
    transition: height .3s ease-in-out;
    -webkit-box-shadow: 0 0 20px transparent;
    box-shadow: 0 0 20px transparent;
  }
  
  .super-navbar__logo-wrapper {
    position: relative;
  }
  
  .notion-link {
    text-decoration: none;
    color: inherit;
  }
  
  .super-navbar__item-list {
    width: auto;
    height: 100%;
    display: -moz-box;
    display: flex;
    -moz-box-align: center;
    align-items: center;
    -moz-box-pack: justify;
    justify-content: space-between;
  }
  
  .super-navbar__item {
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -.5px;
    color: #999;
    height: 100%;
    width: 100%;
    padding: 0 20px;
    -moz-box-pack: center;
    justify-content: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  .super-navbar__content, .super-navbar__item {
    display: -moz-box;
    display: flex;
    -moz-box-align: center;
    align-items: center;
  }