@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;
}

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: rgba(44, 44, 44, 0.293);
  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;
  height: 100vh; /* Ensure it covers the full viewport height */
  margin: 0; /* Remove default body margin */
}

h1.title {
  color: #ebe3e2;
  font-family: "Karrik", sans-serif;
  font-weight: 100;
  font-size: 7ch;
  font-style: normal;
  margin-left: 64px;
  margin-bottom: 10pt;
  font-size: 72px;
  background: -webkit-linear-gradient(315deg, #87b64a 0%, #8ec249 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2.subtitle {
  color: aliceblue;
  font-family: "Karrik", sans-serif;
  font-weight: 100;
  font-size: 3ch;
  font-style: normal;
  margin-top: 5pt;
  margin-bottom: 15px;
  margin-left: 64px;
  max-width: 900px;
}

a.titlelink {
  color: #87b64abd;
  font-family: "Karrik", sans-serif;
  font-weight: 100;
  font-size: 3ch;
  font-style: normal;
  margin-top: 5px;
  margin-left: 64px;
  max-width: 800px;
}

img.titlelink_img {
  margin-right: 6pt;
}

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 {
  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;
}
