@font-face {
    font-family: 'Karrik';
    src: 
         url('../fonts/Karrik.woff') format('woff'),
         url('../fonts/Karrik.ttf')  format('truetype');
  }
  
  .header {
    overflow: hidden;
    background-color: #161616;
    padding: 20px;
    padding-left: 64px;
    padding-right: 64px;
    box-shadow: 0 1px #3a3a3a; /* Soft shadow effect at the bottom */
  }
  
  .header a {
    float: left;
    font-family: "Karrik", sans-serif;
    font-weight: 200;
    font-style: normal;
    color: #ffffff;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    font-size: 18px;
    line-height: 25px;
    border-radius: 4px;
  }
  
  .header a.logo {
    padding: 0;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 30px;
    font-weight: 600;
    color: #ffffff;
  }
  
  .header a:hover {
    color: #87b64a;
    transition: .2s;
  }
  
  .header a.active {
    color: #87b64a;
    margin-right: -12px;
  }
  
  a.privacybutton {
    float: left;
    font-family: "Karrik", sans-serif;
    font-weight: 200;
    font-style: normal;
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 12px;
    margin-right: -12px;
    text-decoration: none;
    font-size: 18px;
    line-height: 25px;
    border-radius: 4px;
  }
  
  .header-right {
    float: right;
  }
  
  @media screen and (max-width: 500px) {
    .header a {
      float: none;
      display: block;
      text-align: left;
    }
    .header-right {
      float: none;
    }
  }
  
  .container {
    max-width: 800px;
    background: #2c2c2c4b;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
  }
  
  body {
    background: #161616;
    margin: 0; /* Remove default body margin */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }
  
  ::-webkit-scrollbar {
    width: 0px;
  }

  
  a.titlelink {
    color: #f0f8ffea;
    font-family: "Karrik", sans-serif;
    font-weight: 100;
    font-size: 3ch;
    font-style: normal;
    margin-top: 5px;
    max-width: 800px;
  }
  
  img.titlelink_img {
    margin-right: 6pt;
  }

  a {
    color: #d5e4c2;
    font-weight: 100px;
  }
  
  h1 {
    font-family: "Karrik", sans-serif;
    margin: 0;
    padding-bottom: 15px;
    font-size: 50px;
    font-weight: 100;
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center; /* Vertically center items */
    gap: 20px; /* Adds space between the image and text */
  }
  
  h2 {
    color: #87b64a;
    font-family: "Karrik", sans-serif;
    font-weight: 100;
    font-size: 3ch;
    font-style: normal;
    max-width: 900px;
  }
  
  p {
    padding-left: 25px;
    line-height: 1.6;
    font-family: "Karrik", sans-serif;
    max-width: 1000px;
    color: aliceblue;
  }

  p strong {
    font-weight: 100;
    color: #d5e4c2;
  }

  li {
    margin-left: 40px;
    color: #d5e4c2;
    text-align: left;
    max-width: 900px;
  }

  button {
    margin-top: 20px;
    border-width: 0;
    padding: 0;
    font-family: "Karrik", sans-serif;
    font-weight: 100;
    font-size: 35px;
    background-color: transparent;
    border-color: transparent;
    cursor: pointer;
    color: #ffffffcb;
    display: flex;
    align-items: center; /* Vertically center items */
    gap: 20px; /* Adds space between the image and text */
    transition: .5s;
  }
  
  div.privacybox {
    padding: 64px;
    background: #101010;
    margin: 64px;
    margin-top: 32px;
    border-radius: 12px;
  }
  
  img {
    border-radius: 12px;
  }
  
  ul {
    font-family: "Karrik", sans-serif;
    padding: 0;
    margin: 0%;
    text-align: right;
  }
  
  /* Style the list */
  ul.breadcrumb {
    padding-top: 30px;
    padding-right: 64px;
    
    list-style: none;
    background-color: #eeeeee00;
  }
  
  /* Display list items side by side */
  ul.breadcrumb li {
    margin: 0;
    display: inline;
    font-size: 18px;
    color: #d8c17e;
  }
  
  ul.breadcrumb li.site {
    color: #ffffff;
  }
  
  /* Add a slash symbol (/) before/behind each list item */
  ul.breadcrumb li+li:before {
    padding: 8px;
    color: #7f848e;
    content: "/\00a0";
  }
  
  /* Add a color to all links inside the list */
  ul.breadcrumb li a {
    color: #87b64a;
    text-decoration: none;
  }
  
  /* Add a color on mouse-over */
  ul.breadcrumb li a:hover {
    color: #87b64a;
    text-decoration: underline;
  }
  