.wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button2 {
  min-width: 200px;
  min-height: 35px;
  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
text-align: center;
  letter-spacing: 1.3px;
  font-weight: 700;
  color: #ffffff;
  background: #4FD1C5;
background: linear-gradient(90deg, rgb(128, 15, 178) 0%, rgb(72, 0, 157) 100%);
  border: none;
  border-radius: 1000px;
  box-shadow: 12px 12px 24px rgba(79,209,197,.64);
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  outline: none;
  position: relative;
  padding: 10px;
  }

button2::before {
content: '';
  border-radius: 1000px;
  min-width: calc(300px + 12px);
  min-height: calc(60px + 12px);
  border: 6px solid #00FFCB;
  box-shadow: 0 0 60px rgba(0,255,203,.64);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all .3s ease-in-out 0s;
}

.button2:hover, .button2:focus {
  color: #f5ff00;
  transform: translateY(-6px);
}

button2:hover::before, button2:focus::before {
  opacity: 1;
}

button2::after {
  content: '';
  width: 30px; height: 30px;
  border-radius: 100%;
  border: 6px solid #00FFCB;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring 1.5s infinite;
}

button2:hover::after, button2:focus::after {
  animation: none;
  display: none;
}

@keyframes ring {
  0% {
    width: 30px;
    height: 30px;
    opacity: 1;
  }
  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}


.holder {
  width: 100%;
  height: auto;
  position: relative;
  z-index:999999999999999; 
    background-color: rgba(0, 0, 0, 0.89);
}

.frame {
  display: flex;
  max-width: 100%;
  height: auto;
    z-index:999999999999999; 
    position: relative;
   background-color: rgba(0, 0, 0, 0.89);
}

.overlay {
  position: relative;
  top: 0;
  left: 0;
  width: 560%;
  height: 315px;
  cursor: pointer;
    z-index:999999999999999; 
    background-color: rgba(0, 0, 0, 0.89);
    
}


.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9;
     background-color: rgba(0, 0, 0, 0.99);}



