html {
  position: absolute;
  margin: 0;
  padding:0;
  width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: scroll;
  
  scrollbar-color: #00000040 #ffffff00;
}
html > * {
  scrollbar-color: #00000040 #ffffff00;
}
::-webkit-scrollbar-thumb {
  background: #00000040;
}
::-webkit-scrollbar-track {
  background: #ffffff00;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  scroll-behavior: smooth;
}

body > * {
  width: 100%;
}

hr {
  border-top: 0.1rem solid var(--pico-muted-border-color);
}

header#header-main {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  padding: 0 !important;
  padding-block: 0 !important;
  text-decoration: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}
#nav {
  position: sticky;
  top: 0;
  z-index: 2;
  width: 100vw;
  padding: 0 !important;
  padding-block: 0 !important;
  background-color: var(--pico-background-color);
  border-bottom: 0.1rem solid var(--pico-muted-border-color);
  pointer-events: all;
}
nav {
  width: 100vw;
  padding: 0 !important;
  padding-block: 0 !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
nav > a {
  text-wrap: nowrap;
  padding: 1rem;
}
#banner {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  margin: 0;
  width: 100vw;
  height: 20rem;
  overflow: hidden;
}

#banner > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% 40%;
}

#spacer-top {
  height: 20rem;
}

main {
  position: relative;
  margin: auto;
  flex: 1;
}

footer {
  margin-top: 6rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2rem;

  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
footer > a {
  text-decoration: none;
}
footer > a:hover {
  text-decoration: underline;
}

i {
  color: var(--pico-primary);
}
div.content {
  max-width: 40rem;
  margin: auto;
  padding: 1rem;
  border-radius: var(--pico-border-radius);
  background-color: var(--pico-background-color);
}
div.content > img {
  border-radius: var(--pico-border-radius);
}

h1 {
  color: var(--pico-primary);
  margin-bottom: 2rem;
  text-align: center;
}
h1 > span {
  color: var(--pico-color);
}
a {
  text-decoration: none;
}

img {
  border-radius: var(--pico-border-radius);
}

.icon-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  text-decoration: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.icon-container.interactive {
  cursor: pointer;
}
.icon-container.interactive:hover > i {
  color: var(--pico-primary-hover);
}
.icon-container > small {
  text-align: center;
  line-height: normal;
  color: var(--pico-secondary);
}

div.content, article {
  margin-top: 2rem;
    position: relative;
    z-index: 0;
}

#ausstattung-icons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: left;
  justify-content: left;
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

#map {
  width: 100%;
  height: 30rem;
  margin-top: 2rem;
  border-radius: var(--pico-border-radius);
  z-index: 0;
}
#form {
  margin-top: 2rem;
}
#submit {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: 0;
}
#message {
  color: var(--pico-primary);
}

@media (max-width: 480px) {
  #nav {
    position: relative;
  }
  /* nav {
    flex-flow: column;
    justify-content: flex-start;
  } */
}
@media (min-width: 1280px) {
  #banner {
    height: 25rem;
  }
}
@media (min-width: 1536px) {
  #banner {
    height: 30rem;
  }
}