@font-face {
  font-family: "Oxygen";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(oxygen-light-1.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Oxygen";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(oxygen-light-2.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Oxygen";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(oxygen-regular-1.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Oxygen";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(oxygen-regular-2.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Oxygen";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(oxygen-bold-1.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Oxygen";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(oxygen-bold-2.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}

:root {
  --gap-1: 2rem;
  --gap-2: 4rem;
  --gap-3: 8rem;
  --outter-max-width: 1440px;
  --inner-max-width: 960px;
  --brand: #003b5c;
}

:focus-visible {
  outline: -webkit-focus-ring-color auto 1px;
  outline-color: var(--brand);
}

* {
  font-size: 62.25%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Oxygen", sans-serif;
  color: var(--brand);
}

body {
  font-size: 62.25%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.container {
  width: 100%;
  min-height: 100vh;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header,
main,
footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

:is(.outter-w-container, .inner-w-container) {
  padding: 0 var(--gap-1) 0 var(--gap-1);
  gap: var(--gap-1);
  display: flex;
  width: 100%;
}

.outter-w-container {
  max-width: var(--outter-max-width);
}

.inner-w-container {
  max-width: var(--inner-max-width);
}

:is(header, footer) .outter-w-container {
  justify-content: space-between;
}

main > .outter-w-container {
  flex-direction: column;
  margin: 0 0 var(--gap-3);
  justify-content: space-between;
}

main > .inner-w-container {
  flex-direction: column;
}

:is(header, footer) ul {
  display: flex;
  gap: var(--gap-1);
  align-items: center;
}

:is(header, footer) :is(li, a) {
  list-style: none;
  text-decoration: none;
  font-size: 1rem;
}

:is(header, footer) {
  padding-top: var(--gap-3);
  padding-bottom: var(--gap-3);
}

:is(h1, h2, p) {
  width: 100%;
}

.logo img {
  width: 150px;
  height: auto;
}

main > figure {
  width: 100%;
  height: 300px;
  margin: 0 0 var(--gap-3);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

main .berichte {
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0;
  margin: var(--gap-3) 0;
}

.berichte .outter-w-container {
  padding: 0 0 0 0;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.berichte .inner-w-container {
  margin: var(--gap-3) 0 0;
}

.berichte .outter-w-container a {
  display: block;
  flex: 0 0 33%;
  padding: var(--gap-1);
  transition: transform 0.3s ease;
}

.berichte .outter-w-container a:hover {
  transform: scale(103%);
}

.berichte .outter-w-container a figure {
  background-color: #c3c3c3;
  box-shadow: 0px 0px 10px #c3c3c3;
  transition: box-shadow 0.3s ease;
}

.berichte .outter-w-container a:hover figure {
  box-shadow: 0px 0px 20px #5c5c5c;
}

footer {
  background-color: #eaeaea;
}

h1 {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
  margin: 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 2rem);
  font-weight: 300;
  margin: 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

hr {
  margin: var(--gap-3) 0;
  height: 1px;
  width: 100%;
  border: none;
  background-color: var(--brand);
}

:is(header, footer) li a {
  font-size: clamp(1rem, 2vw, 1.4rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: text-underline-offset 1s ease-in,
    text-decoration-color 0.3s ease-in;
  text-underline-offset: 0em;
  text-decoration-color: rgba(255, 255, 255, 0);
}

:is(header, footer) li a:hover {
  text-decoration: underline;
  text-underline-offset: 0.3em;
  text-decoration-color: var(--brand);
}

p {
  font-size: clamp(1.4rem, 1vw, 2rem);
  line-height: 1.6;
  margin: 0;
}

img {
  width: 100%;
  height: auto;
}

p,
h1,
h2 {
  text-align: center;
}

@media screen and (max-width: 1240px) {
  :root {
    --gap-1: 1.2rem;
  }
  .berichte .outter-w-container a {
    flex: 0 0 50%;
  }
}

@media screen and (max-width: 768px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 1;
  }
  :is(header, footer) {
    padding-top: var(--gap-2);
    padding-bottom: var(--gap-2);
  }
  .berichte .outter-w-container a {
    flex: 0 0 100%;
  }
  .berichte .outter-w-container a:hover {
    transform: scale(97%);
  }
  .content .berichte {
    margin: var(--gap-1) 0;
  }
  .berichte .inner-w-container {
    margin: var(--gap-1) 0 0;
  }
  p,
  h1,
  h2 {
    text-align: left;
  }
}
/*

@font-face {
  font-family: "oxygen";
  font-style: normal;
  font-weight: 700;
  src: url("Oxygen-Bold.ttf") format("ttf");
}


@font-face {
  font-family: "oxygen";
  font-style: normal;
  font-weight: 400;
  src: url("Oxygen-Regular.ttf") format("ttf");
}
*/

/* latin-ext */

/* * {
    outline: 1px solid red
}*/
