
.container-buttons {
  position: absolute;
  width: 85%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  top: 125%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.button {
  position: relative;
  background-image: url("images/eazy.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 50%;
  width: 100%;
  min-height: 100px; /* Asegura que la imagen se vea */
  border-radius: 10px;
  transition: all 0.4s ease-in;
}

p .h {
  text-align: center, justify;
  @media (width <= 700px) {
    transform: translateY(99960px);
    font-size: 50px;
  }
}

img {
  display: block;
  margin: 80px auto;
  width: min(500px, 80%);
}

.button:nth-child(2) {
  position: relative;
  background: url("images/icecub.jpeg") center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.button:nth-child(3) {
  position: relative;
  background: url("images/drdre.jpeg") center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.button:nth-child(4) {
  position: relative;
  background-image: url("images/djyella.jpeg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.button:nth-child(5) {
  position: relative;
  background-image: url("images/mcren2.jpeg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.button:nth-child(6) {
  position: relative;
  background-image: url("images/arabianprince.jpeg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgb(255, 0, 21),
    rgb(255, 0, 60),
    rgb(248, 58, 0),
    rgb(255, 72, 0),
    rgb(255, 204, 0),
    rgb(89, 0, 255),
    rgb(20, 0, 169),
    rgb(0, 0, 0)
  );
  background-size: 800%;
  border-radius: 10px;
  filter: blur(8px);
  animation: light 20s linear infinite;
  opacity: 0;
}

.button:nth-child(2)::before {
  background: linear-gradient(
    45deg,
    rgb(132, 0, 255),
    rgb(174, 0, 255),
    rgb(255, 0, 191),
    rgb(255, 0, 212),
    rgb(140, 0, 255),
    rgb(195, 0, 255),
    rgb(255, 20, 243),
    rgb(243, 111, 255)
  );
  background-size: 800%;
  border-radius: 10px;
  filter: blur(8px);
  animation: light 20s linear infinite;
  opacity: 0;
}

.button:nth-child(3)::before {
  background: linear-gradient(
    45deg,
    rgb(255, 123, 0),
    rgb(255, 174, 0),
    rgb(255, 238, 0),
    rgb(255, 251, 0),
    rgb(255, 136, 0),
    rgb(255, 174, 0),
    rgb(255, 200, 20),
    rgb(245, 255, 111)
  );
  background-size: 800%;
  border-radius: 10px;
  filter: blur(8px);
  animation: light 20s linear infinite;
  opacity: 0;
}

.button:nth-child(4)::before {
  background: linear-gradient(
    45deg,
    rgb(255, 238, 0),
    rgb(187, 255, 0),
    rgb(0, 255, 106),
    rgb(255, 251, 0),
    rgb(0, 255, 21),
    rgb(81, 255, 0),
    rgb(184, 255, 20),
    rgb(111, 255, 147)
  );
  background-size: 800%;
  border-radius: 10px;
  filter: blur(8px);
  animation: light 20s linear infinite;
  opacity: 0;
}

.button:nth-child(5)::before {
  background: linear-gradient(
    45deg,
    rgb(255, 238, 0),
    rgb(187, 255, 0),
    rgb(0, 255, 106),
    rgb(255, 251, 0),
    rgb(0, 255, 21),
    rgb(81, 255, 0),
    rgb(184, 255, 20),
    rgb(111, 255, 147)
  );
  background-size: 800%;
  border-radius: 10px;
  filter: blur(8px);
  animation: light 20s linear infinite;
  opacity: 0;
}

.button:nth-child(6)::before {
  background: linear-gradient(
    45deg,
    rgb(13, 255, 0),
    rgb(255, 0, 166),
    rgb(0, 81, 255),
    rgb(255, 123, 0),
    rgb(0, 255, 21),
    rgb(81, 255, 0),
    rgb(184, 255, 20),
    rgb(111, 255, 147)
  );
  background-size: 800%;
  border-radius: 10px;
  filter: blur(8px);
  animation: light 20s linear infinite;
  opacity: 0;
}

.button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 0.4s ease-in-out;
}

.btnText {
  position: absolute;
  color: #21252e;
  top: 100%;
  left: 10px;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.button:hover::before {
  opacity: 1;
}

.button:hover {
  background-position: left center;
  background-size: cover;
  background-attachment: fixed;
  background-size: 220px;
  height: calc(100% + 20px);
}

.button:hover::after {
  background-color: rgba(0, 0, 0, 0);
  box-shadow: rgba(0, 0, 0, 0.8) 0px -50px 36px -8px inset;
}

.button:hover .btnText {
  position: absolute;
  color: #fff;
  top: calc(100% - 25px);
  left: 10px;
  z-index: 2;
  opacity: 1;
}

@keyframes light {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 400% 0;
  }

  100% {
    background-position: 0 0;
  }
}

p .h {
  text-align: center;
  margin: 50px;
  @media (width <= 700px) {
    transform: translateY(99960px);
    margin: 30%;
  }
}

#music {
    transform: translatey(-100%);
    @media(width <= 700px) {
        transform: translatey(55px);
    }
   
}

#titulo{
    transform: translatey(-80%);
    @media (width <= 700px) {
        transform: translatex(9px);
      }
    
}

.back {
    background-color: white;
    text-align: center;
    width: 50px;
    margin-left: 900px;

}
