/* .myParticles::after {
  position: absolute;
} */

.myParticles {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  top: 5%;
  margin: auto;
}
.myParticles .container {
  position: relative;
}

.myParticles .container .logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.myParticles .container .logo .images img {
  width: 150px;
  border: 5px solid rgb(218, 215, 215);
  border-radius: 50%;
}

.myParticles .container .logo .images {
  display: flex;
  justify-content: center;
  margin-bottom: 7px;
}
.myParticles .container .logo .title {
  display: grid;
  justify-content: center;
  gap: 5px;
  place-items: center;
}
.myParticles .container .logo .title h5 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: aliceblue;
  font-size: 2.3em;
}

.myParticles .container .logo .title p {
  font-size: 1.2em;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: rgba(255, 255, 255, 0.6);
}

/* Menu */

.container2 {
  margin: auto;
  display: grid;
  justify-content: center;
  margin-top: 7vh;
}

.container2 .menu {
  display: grid;
  gap: 20px;
}

.container2 .menu .items {
  padding: 10px;
  box-shadow: 5px 4px #fff;
  display: flex;
  align-items: center;
  gap: 10px;

  border-radius: 7px;
  width: 500px;
  border: 1px solid #fff;

  transition: 0.3s ease;
}

.container2 .menu .items {
  transform: scale(1);
  box-shadow: 5px 4px rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
}

.container2 .menu .items .image img {
  width: 30px;
}
.container2 .menu .items .judul {
  width: 100%;
  margin-left: -10px;

  text-align: center;
}

.container2 .menu .items .judul span {
  font-size: 1.35em;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: 500;
  color: #fff;
}

.container2 .menu .items:before {
  content: "";
  background: linear-gradient(
    45deg,
    #ff0000,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5,
    #002bff,
    #7a00ff,
    #ff00c8,
    #ff0000
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing 20s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}

.container2 .menu .items:active {
  color: #000;
}

.container2 .menu .items:active:after {
  background: transparent;
}

.container2 .menu .items:before {
  opacity: 1;
}

.container2 .menu .items:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #111;
  left: 0;
  top: 0;
  border-radius: 10px;
}

@keyframes glowing {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

footer {
  margin-top: 5vh;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer h5 {
  color: rgba(255, 255, 255, 0.9);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 1.5em;
}

@media screen and (max-width: 576px) {
  .container2 .menu .items {
    width: 300px;
  }
  footer h5 {
    font-size: 1.4em;
  }
}
