* {
  box-sizing: border-box;
}
.menu {
  position: fixed;
  z-index: 20;
}
.menu__toggle {
  opacity: 0;
  position: absolute;
  z-index: 20;
}
.menu__toggle:checked ~ .menu__content .menu__item {
  --active-x: var(--x);
  --active-y: var(--y);
  --scale: 1;
}
.menu__toggle:checked ~ .menu__toggle-label:not(.menu__toggle-label--closer) {
  --clip: circle(1000% at 0% 0%);
  height: 100vh;
  width: 100vw;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.menu__toggle:checked ~ .menu__toggle-label .menu__icon:nth-of-type(1) {
  --scale: 0;
}
.menu__toggle:checked ~ .menu__toggle-label .menu__icon:nth-of-type(2) {
  --scale: 1;
}
.menu__toggle-label {
  cursor: pointer;
  height: calc(var(--size, 20) * 0.5vmin);
  width: calc(var(--size, 20) * 0.5vmin);
  display: block;
  --clip: circle(100% at 0% 0%);
  -webkit-clip-path: var(--clip);
  clip-path: var(--clip);
  position: absolute;
  top: 0;
  left: 0;
  transition: backdrop-filter calc(var(--speed, 1) * 1s) var(--ease), clip-path 0s, -webkit-clip-path 0s;
}
.menu__toggle-label--closer {
  z-index: 30;
  --scale: 0;
}
.menu__icon {
  --scale: 1;
  height: calc(var(--size, 20) * 0.25vmin);
  width: calc(var(--size, 20) * 0.25vmin);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-70%, -70%) scale(var(--scale, 1));
  fill: var(--primary);
  transition: all calc(var(--speed, 1) * 1s) var(--ease);
}
.menu__icon:nth-of-type(2) {
  --scale: 0;
}
.menu__content {
  background: #090909;
  /*background-image: url("baer/hauptbaer.png"); */
  background-size: cover;
  margin: 0;
  display: block;
  list-style-type: none;
  z-index: -1;
  filter: url("#goo");
  position: absolute;
  top: 0;
  height: 0;
  width: 0;
  left: 0;
  z-index: 20;
}
.menu__content:after {
  background: #090909;
  /*background-image: url("baer/hauptbaer.png"); */
  background-size: cover;
  content: '';
  border-radius: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  height: calc(var(--size, 20) * 1vmin);
  width: calc(var(--size, 20) * 1vmin);
  top: 0;
  left: 0;
z-index: 20;
}
.menu__item {
  background: #090909; 
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  font-size: 3rem;
  list-style-type: none;
  height: calc(var(--size, 20) * 1vmin);
  left: calc(var(--active-x, 0) * 1vw);
  overflow: hidden;
  place-items: center;
  position: absolute;
  text-align: center;
  top: calc(var(--active-y, 0) * 1vh);
  transform: translate(-50%, -50%) scale(var(--scale, 0.75));
  transition: all calc(var(--speed, 1) * 1s) calc(var(--delay, 0) * 1s) var(--ease);
  width: calc(var(--size, 20) * 1vmin);
  z-index: 20;
}
.menu__item:nth-of-type(1) {
  --delay: 0.1;
  --x: 19;
  --y: 19;
z-index: 20;
}
.menu__item:nth-of-type(2) {
  --delay: 0.2;
  --x: 81;
  --y: 19;
}
.menu__item:nth-of-type(3) {
  --delay: 0.3;
  --x: 25;
  --y: 55;
}
.menu__item:nth-of-type(4) {
  --delay: 0.4;
  --x: 75;
  --y: 55;
}
.menu__item:nth-of-type(5) {
  --delay: 0.5;
  --x: 50;
  --y: 64;
}
.menu__link {
  background: none;
  align-items: center;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  /*text-align: center;*/
  display: flex;
  justify-content: center;
  height: 100%;
  width: 100%;
  font-size: 2vw;
  z-index: 20;
}
@media (orientation: portrait) {
  .menu__link {
    font-size: 4vw;
	z-index: 20;
  }
  .menu__item:nth-of-type(3) {
  --delay: 0.3;
  --x: 25;
  --y: 35;
  }
  .menu__item:nth-of-type(4) {
  --delay: 0.4;
  --x: 75;
  --y: 35;
  }
  .menu__item:nth-of-type(5) {
  --delay: 0.5;
  --x: 50;
  --y: 40;
  }
}
.menu__item  :hover {
			    color:#AFAFAF; text-decoration:none; 
				}
a { color:#FFFFFF; text-decoration:none; } 
a:visited { color:#FFFFFF;text-decoration:none;} 
a:active { color:#FFFFFF; text-decoration:none;} 
a:hover { color:#AFAFAF; text-decoration:none;} 