* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  background-color: black;
}

#firstvideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; /* Places the video behind other elements */
}

.indvid {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden; /* Prevents scrollbars */
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  margin: 0;
}

.pushable {
  position: relative;
  padding: 15px 40px;
  border: none;
  outline: none;
  color: white;
  font-weight: bolder;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  text-transform: uppercase;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 20px rgba(255, 242, 0, 0.8), 0 0 30px rgba(255, 242, 0, 0.8), 0 0 40px rgba(255, 242, 0, 0.8);
}

.pushable .moving-border {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  background: linear-gradient(45deg, #ff0d00, #00FF00, #ff6200, #ff00c8, #0400ff);
  background-size: 600%;
  z-index: -1;
  border-radius: 12px;
  filter: blur(10px);
  animation: glowing 20s linear infinite;
  opacity: 0.8;
}

.pushable:hover .moving-border {
  opacity: 1;
}

.pushable:active {
  color:rgb(210, 42, 70);
  font-weight: bold;
}

.pushable .front {
  position: relative;
  z-index: 1;
}

.pushable::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: rgb(210, 42, 70);
  filter: blur(15px);
  z-index: -2;
}

@keyframes glowing {
  0% {
      background-position: 0 0;
  }
  50% {
      background-position: 400% 0;
  }
  100% {
      background-position: 0 0;
  }
}