* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

header {
  background-color: #333;
  color: white;
  padding: 10px 0;
  text-align: center;
}

header h1 {
  margin: 0;
}
nav {
  /* width: 100%; */
  display: flex;
  justify-content: space-around;
}
nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: min(100vw, 27rem);
  /* gap: 1rem; */
}

nav ul li {
  /* display: inline; */
  /* margin: 0 10px; */
  /* padding: .4rem 1rem; */
  /* border-radius: .5rem; */
  /* height: 2rem; */
}

nav ul li a {
  color: white;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border-radius: 1.5rem;
  /* justify-content: center; */
}
nav img {
  width: 2rem;
  height: 2rem;
}
.dropdown {
  padding: 0.5rem;
  border-radius: 0.3rem;
}
.dropdown ul {
  display: flex;
  /* width: min(100vw, 33rem); */
  background-color: #444;
}
.dropdown ul {
  display: none;
  z-index: 2;
  position: absolute;
  width: 87%;
  /* margin: auto; */
  left: 50%;
  transform: translateX(-50%);
  padding: 1rem;
  box-shadow: 0.5rem 0.5rem 1rem #333;
  border-radius: 1rem;
}
.dropdown:hover {
  background-color: #444;
}
.dropdown:hover ul {
  display: flex;
  position: absolute;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.dropdown ul li {
  /* padding: .5rem; */
}
.dropdown ul li a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  min-width: 8rem;
  /* padding: 1rem; */
  border-radius: 1rem;
}
.dropdown ul li a:hover {
  color: #333;
  background-color: white;
}
main {
  padding: 20px;
}

section {
  margin-bottom: 20px;
}

section h2 {
  color: #333;
}

aside {
  background-color: #ffffff;
  padding: 10px;
  margin: 20px 0;
}
.cBild {
  display: flex;
  align-items: center;
  max-width: 100%;
  max-height: 100vh;
  /* aspect-ratio: 1280 / 906; */
  width: 100%;
}
.bild {
  /* display: flex; */
  position: relative;
  width: 100%;
  /* max-height: 100vh; */
  aspect-ratio: 1280/905;
  /* margin-left: 10%; */
  align-items: center;
  justify-content: center;
  /* max-width: 100vw; */
  /* height: auto; */
  /* height: 100%; */
  /* width: auto; */
}
.raum {
  width: 100%;
  max-height: 100%;
  aspect-ratio: 1280 / 905;
  height: 100%;
  max-width: 100%;
}

.box {
  top: 23.8%;
  left: 62.2%;
  width: 6.1%;
}
.decke {
  left: 84%;
  width: 13%;
  top: 64.3%;
}
.sack {
  left: 70.6%;
  width: 6.8%;
  top: 69.7%;
}
.socke1 {
  left: 34.8%;
  width: 6.3%;
  top: 43%;
}
.link {
  transition: filter 0.1s;
  position: absolute;
  height: auto;
}
.link:hover {
  /* opacity: 0; */
  filter: sepia(1) grayscale(0) saturate(40.5) hue-rotate(227deg) brightness(1);
  cursor: pointer;
}
.link > img {
  width: 100%;
  margin: 0;
  height: auto;
}

nav ul li:hover {
  background-color: #444;
  border-radius: 0.5rem;
}
