.Container.Maul {
  position: relative;
  background-color: #00000000;
  border-radius: 15px;
  overflow: hidden;
}

.Profile.Maul .TextP, .Social.Maul .SocName, .ConFav.Maul div, .Desc.Maul .DescText {
  color: aliceblue;
}

.Profile.Maul, .Social.Maul, .ConFav.Maul, .Desc.Maul {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgb(0, 0, 0);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.ConFav.Maul, .Desc.Maul {
  border-top: rgba(255, 255, 255, 0.3) solid 2px;
  border-bottom: rgba(255, 255, 255, 0.3) solid 2px;
}

.DescText.Maul {
  border-left: rgba(255, 255, 255, 0) solid 2px;
  border-right: rgba(255, 255, 255, 0) solid 2px;
}

.backgroundMaul {
  position: absolute;
  width: 110%;
  height: 110%;
  top: -5%;
  left: -5%;
  background: #1d1d1d;
  overflow: hidden;
  z-index: -100;
}

.backgroundMaul::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  z-index: 1;
}

.b-children {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 5%;
  backface-visibility: visible;
  animation: move linear infinite;
  color: #0000ff;
  z-index: 0;
}

.b-children:nth-child(1) {
  top: 15%;
  left: 20%;
  animation-duration: 85s;
  animation-delay: 5s;
  transform-origin: 45vmin -35vmin;
  box-shadow: 48vmin 0 5.8vmin currentColor;
}

.b-children:nth-child(2) {
  top: 65%;
  left: 75%;
  animation-duration: 120s;
  animation-delay: -3s;
  transform-origin: -20vmin -60vmin;
  box-shadow: -35vmin 0 6.2vmin currentColor;
}

.b-children:nth-child(3) {
  top: 40%;
  left: 5%;
  animation-duration: 95s;
  animation-delay: 12s;
  transform-origin: 30vmin -40vmin;
  box-shadow: 25vmin 0 5.5vmin currentColor;
}

.b-children:nth-child(4) {
  top: 80%;
  left: 45%;
  animation-duration: 110s;
  animation-delay: 8s;
  transform-origin: -40vmin -25vmin;
  box-shadow: -45vmin 0 6vmin currentColor;
}

.b-children:nth-child(5) {
  top: 25%;
  left: 60%;
  animation-duration: 100s;
  animation-delay: -8s;
  transform-origin: 55vmin -45vmin;
  box-shadow: 52vmin 0 5.3vmin currentColor;
}

.Social.Maul:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}