/*Changing color animation*/
.css-selector {
  background-image: linear-gradient(334deg, #89aad4, #AD75E9, #e18bf0, #C0F8FF);
  background-size: 300% 300%;
  -webkit-animation: button-color 6s ease infinite;
  -moz-animation: button-color 6s ease infinite;
  -o-animation: button-color 6s ease infinite;
  animation: button-color 6s ease infinite;
}

@-webkit-keyframes button-color {
  0% {
    background-position: 26% 0
  }

  50% {
    background-position: 75% 100%
  }

  100% {
    background-position: 26% 0
  }
}

@-moz-keyframes button-color {
  0% {
    background-position: 26% 0
  }

  50% {
    background-position: 75% 100%
  }

  100% {
    background-position: 26% 0
  }
}

@-o-keyframes button-color {
  0% {
    background-position: 26% 0
  }

  50% {
    background-position: 75% 100%
  }

  100% {
    background-position: 26% 0
  }
}

@keyframes button-color {
  0% {
    background-position: 26% 0
  }

  50% {
    background-position: 75% 100%
  }

  100% {
    background-position: 26% 0
  }
}

/*End of animation*/
/*VIDEO */
.myVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100vw;
  min-height: 100vh;
  max-width: 100%;
  max-height: 100vh;
  opacity: 100%;
  /*filter: brightness(81%);*/
  object-fit: cover;
}

.large {
  display: none
}

.medium {
  display: none
}

.small {
  display: none
}

.smallest {
  display: none;
}

@media (min-width: 1500px) {
  .large {
    display: block;
  }
}

@media (min-width: 780px) and (max-width: 1499px) {
  .medium {
    display: block;
  }
}

@media (max-width: 780px) {
  .small {
    display: block;
  }
}

@media (max-width: 400px) {
  .smallest {
    display: block;
  }
}

/*END OF VIDEO*/
@media (max-width: 767px) {
  .button-1 {
    top: 75% !important;
  }
}

/******************** BUTTON **********************/
.wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*
.button {
  min-width: 165px;
  min-height: 53px;
  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-weight: 700;
  color: #FFFFff;
  border: none;
  border-radius: 1000px;
  box-shadow: 12px 12px 24px rgb(237, 164, 245);
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  outline: none;
  position: absolute !important;
  top: 86%;
  padding: 10px;
}

.button-1 {
  min-width: 165px;
  min-height: 53px;
  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-weight: 700;
  color: #FFFFff;
  border: none;
  border-radius: 1000px;
  box-shadow: 12px 12px 24px rgb(237, 164, 245);
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  outline: none;
  position: absolute !important;
  top: 86%;
  padding: 10px;
} */
.button {
  padding: 15px 30px;
  top: 86%;
  color: white;
  background: linear-gradient(to right, #ff02c6, #AC42F6, #1EE7E1) !important;
  border-radius: 0.25rem;
  border:none;
  position: absolute;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 3px;
  cursor: pointer;
  z-index: 100;
  transition: 0.3s;
}

.button:hover{
  transform: scale(1.1);
  transition: 0.2s;
}



.button-1 {
  padding: 15px 30px;
  color: white;
  top: 86%;
  background: linear-gradient(to right, #ff02c6, #AC42F6, #1EE7E1) !important;
  border-radius: 0.25rem;
  border: none;
  position: absolute;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 3px;
  cursor: pointer;
  z-index: 100;
  transition: 0.3s;
}
.button-1:hover{
  transform: scale(1.1);
  transition: 0.2s;
}


/* here add text on top of buttons */
.select-venue {
  position: relative;
  height: 90vh;
  width: 100%;
  margin: 0 auto;
}

.inside-div {
  position: absolute;
  left: 50%;
  bottom: 20%;
  transform: translate(-50%, 50%);
}

.inside-div h1 {
  color: white;
  font-size: 1.5rem;
}
@media(max-width:726px){
  .inside-div h1{
    font-size: 1.2rem !important;
  }
}
@media(max-width:526px){
  .inside-div h1{
    font-size: 1.1rem !important;
  }
  
}
@media(min-width:200px) and (max-width:400px){
  .inside-div h1{
    font-size: 1rem !important;
  }
  
}
@media(max-width:768px){
  .inside-div{
    bottom:24% !important;
  }
  .select-venue {
    height: 80vh !important;
  }
}

/* button::before {
  content: '';
  border-radius: 1000px;
  min-width: calc(165px + 12px);
  min-height: calc(53px + 12px);
  border: 8px solid #C2F9FB;
  box-shadow: 0 0 60px #83EFFF;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all .3s ease-in-out 0s;
} */
/* .button:hover, .button:focus {
  color: #83EFFF;
  transform: translateY(-6px);
}

.button-1:hover, .button-1:focus {
  color: #83EFFF;
  transform: translateY(-6px);
} */
/*
button:hover::before, button:focus::before {
  opacity: 1;
} */
/* button::after {
  content: '';
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: 6px solid #ECFBFF;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring 1.5s infinite;
} */
/* button:hover::after, button:focus::after {
  animation: none;
  display: none;
} */
/*END BUTTON & BUTTON ANIMATION */
