/*Navbar2*/
section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 0;
}
nav {
  position: relative;
  width: 600px;
  height: 55px;
  background: #000;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-evenly;
}
nav a {
  position: relative;
  display: inline-block;
  font-size: 1.25em;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  padding: 0 23px;
  z-index: 1;
}
nav span {
  margin-left: 450px;
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 100%;
  background: linear-gradient(45deg, darkblue, blue);
  border-radius: 8px;
  transition: 0.5s;
}
nav a:nth-child(1):hover ~ span {
  left: -450px;
}
nav a:nth-child(2):hover ~ span {
  left: -303px;
}
nav a:nth-child(3):hover ~ span {
  left: -142px;
}
nav a:nth-child(4):hover ~ span {
  left: 0px;
}
/*Schule*/

maps {
  display: flex;
  justify-content: center;
  justify-content: space-around;
  width: 100%;
  height: 100%;
  transition: 0.5s;
}
.BBW {
  position: absolute;
  margin-left: 70%;
  margin-top: 2;
}
.BMS {
  position: absolute;
  margin-left: 20%;
  margin-top: 0;
}

/*Allgemein*/
body {
  background-color: rgb(38, 163, 212);
  background-image: linear-gradient(
    to right,
    rgb(174, 210, 230),
    rgb(67, 147, 212),
    rgb(87, 87, 255)
  );
}
