  .glow-card {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }

  .glow-card:hover {
    box-shadow: 0 0 15px 3px #0e0c72ff;
    transform: scale(1.02);
  }
body,html{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    font-family: sans-serif;
}
.Section_top{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    background-image: url(image/home.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    justify-content: center;
    animation: change 10s infinite ease-in-out;
}
.content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-transform: uppercase;

}
.content h1{
    color: #fff;
    font-size: 60px;
    letter-spacing: 15px;
}
.content h1 span{
    color: #111;
}
.content a{
    background: #85c1ee;
    padding: 10px 24px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 20px;
}
.content a:hover{
    background: #034e88;
    color: #fff;
}
@keyframes change{
    0%
    {
        background-image: url(image/background.jpg);
    }
    20%
    {
        background-image: url(image/background1.jpg);
    }
    40%
    {
        background-image: url(image/background.jpg);
    }
    60%
    {
        background-image: url(image/background.jpg);
    }
    80%
    {
        background-image: url(image/background.jpg);
    }
    100%
    {
        background-image: url(image/background.jpg);
    }
}


.music-visual-container {
  position: relative;
  width: 300px;
  height: 300px;
}

.background-image {
  width: 100%;
  height: 100%;
  display: block;
}

.lightning {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.lightning path {
  stroke: #00ffff;
  stroke-width: 4;
  fill: none;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 6px #00ffff);
  animation: pulse 1.0s infinite ease-in-out;
  z-index: -1;
}

@keyframes pulse {
  0% { stroke-opacity: 0.2; }
  50% { stroke-opacity: 1; }
  100% { stroke-opacity: 0.2; }}