@font-face {
  font-display: block; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Port Lligat Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/port-lligat-sans-v22-latin-regular.woff2")
    format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #222222;
}
.background:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  background-attachment: fixed;
  backdrop-filter: blur(5px);
  overflow: hidden;
  z-index: 1;
}
.background {
  position: fixed;
  height: 100%;
  width: 100%;
  background: url("../img/bg-alpstein.webp") no-repeat center center/cover;
  background-attachment: fixed; /* Prevent background from scrolling */
}
.content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  padding: 16px;

  font-family: "Roboto", sans-serif;
  font-size: 1.1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  color: white;
}
h1, h2 {
  font-family: "Port Lligat Sans", serif;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}
h1 {
  font-size: 6rem;
  font-weight: bold;
  font-style: normal;
  margin-top: 32px;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  font-style: normal;
  margin-top: 32px;
  margin-bottom: 16px;
}
ul {
  list-style: none;
  padding: 0;
}
li {
  margin: 10px 0;
}
a {
  color: #4fd1c5;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.centertable {
  width: auto;
  margin: 25px auto;
  border-collapse: separate;
  white-space: nowrap;
}
.centertable .heading {
  text-align: center;
}
.centertable th {
  text-align: right;
  padding-right: 12px;
  padding-bottom: 8px;
}
.centertable td {
  text-align: left;
  padding-bottom: 8px;
}
