/* === Global Styles === */

/* Einheitlicher Hintergrund mit Blur */

html, body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  height: 100vh;
}

body {
  background: url('../../assets/img/bg.jpg') no-repeat center center fixed;
  background-size: cover;
  position: relative;
  z-index: 0;
}

/* Optionaler Blur-Effekt */

body::before {
  content: "";
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background: url('../../assets/img/bg.jpg') no-repeat center center fixed;
  background-size: cover;
  filter: blur(8px);
  z-index: -1;
  /*margin: 15px;*/
}

main {
  flex: 1 0 auto;
}

/* Standard-Container */

.container {
  background: rgba(255,255,255,0.61);
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  padding: 30px;
  margin: 40px auto;
  max-width: 95%;
  max-height: 100vh;
  overflow: auto;
}

footer {
  flex-shrink: 0;
  /*background-color: rgba(255,255,255,0);*/
  padding: 10px;
  text-align: center;
  bottom: 0px;
}

/* Typografie */

#cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #f8f9fa;
  border-top: 1px solid #ccc;
  padding: 10px;
  text-align: center;
  z-index: 9999;
}

#fusszeile {
  position: absolute;
  width: 100%;
  bottom: 0;
}

