/* CUADROS IP */
.server-box {
  width: 700px;
  max-width: 80%;
  margin: 100px auto;
  padding: 20px 25px;
  background: #13081d;
  border-radius: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow:
    0 0 50px #ffffff4f,
    0 0 10px #9e22d8
}
.server-info {
  display: flex;
  align-items: center;
  gap: 18px;
}
.subtitle {
  color: #a36cb8;
  font-size: 0.9rem;
  font-weight: bold;
  margin: 0;
  letter-spacing: 1px;
}
.server-info h2 {
  margin: 5px 0 0 0;
  color: white;
  font-size: 1.5rem;
  letter-spacing: 5px;
}
/**/

/* BOTON COPIAR IP */
.Btn {
  width: 140px;
  height: 45px;
  background-color: rgb(118, 64, 161);
  border: none;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 142);
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  position: relative;
  overflow: hidden;
  transition-duration: 0.5s;
}
.text {
  color: rgb(255, 255, 255);
  font-weight: 800;
  letter-spacing: 1.1px;
  z-index: 2;
}
.svgIcon {
  z-index: 2;
}
.svgIcon path {
  fill: rgb(201, 180, 255);
}
.Btn:hover {
  color: rgb(255, 193, 252);
}
.effect {
  position: absolute;
  width: 100px;
  height: 100px;
  background-color: rgb(236, 104, 236);
  border-radius: 50%;
  z-index: 1;
  opacity: 0;
  transition-duration: 0.5s;
}
.Btn:hover .effect {
  transform: scale(15);
  transform-origin: center;
  opacity: 1;
  transition-duration: 0.5s;
}
.Btn:hover {
  box-shadow:
    0px 0px 5px rgb(166, 104, 236),
    0px 0px 10px rgb(166, 104, 236),
    0px 0px 30px rgb(166, 104, 236);
  transition-duration: 0.7s;
}
/**/

@media (max-width: 768px) {
  .server-box {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .server-info {
    flex-direction: column;
  }

  .server-info h2 {
    font-size: 1.1rem;
    letter-spacing: 2px;
  }
}