@font-face {
  font-family: urban;
  src: url('./Urban\ Graffiti\ PERSONAL\ USE\ ONLY.ttf');
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-transition: color 9999s ease-out, background-color 9999s ease-out;
    -webkit-transition-delay: 9999s;
}

body {
  background: rgb(182, 0, 109);
  background-size: cover;
  font-family: "Roboto";
  color: #fff;
}

h1,
h2 {
  font-family: "Roboto";
  font-weight: 800;
}

.topLevel {
  max-width: 540px;
}

#all-content {
  padding: 20px;
  margin-top: 2rem;
  margin-bottom: 2rem;
  background-color: rgb(44 0 117 / 68%);
  position: relative;
  z-index: 10;
  height: 100%;
}

.rsvpButton {
  line-height: 30px;
  font-size: 20px;
}

.rsvpButton img {
  margin-top: -5px;
  margin-right: 8px;
  margin-left: 8px;
}

.modal-content {
  background-color: rgb(44 0 117 / 100%);
  border-color: rgb(44 0 117 / 100%);
  color: #fff;
}

.modal-header {
  border-bottom-color: rgb(44 0 117 / 25%);
}

.modal-footer {
  border-top-color: rgb(44 0 117 / 25%);
  text-align: center;
  justify-content: center;

}

#rsvpCountHeader{
  color: rgb(255, 0, 153);
}

.customButton {
  background-color: rgba(182, 0, 109, 0.50);
  border-color: rgb(182, 0, 109);
  color: #fff;
}

.customButton:hover {
  background-color: rgb(182, 0, 109);
  border-color: rgb(182, 0, 109);
  color: #fff;
}

.customButtonlk {
  background-color: rgba(182, 0, 109, 0);
  border-color: rgba(255,255,255, 0.6);
  color: #fff;
}

.customButtonlk:hover {
  background-color: rgba(182, 0, 109,0.4);
  border-color: rgba(255,255,255, 0.6);
  color: #fff;
}

/*Scrollbar*/

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.5);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #ffa300;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgb(44 0 117 / 68%);
}

#myVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: 1;
}

.fixed-background-gif {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  background-image: url('./party.gif');
  /* Replace with your GIF URL */
  background-size: cover;
  /* Ensures the GIF covers the entire area */
  background-position: center center;
  /* Centers the GIF */
  background-repeat: no-repeat;
  /* Prevents tiling if GIF is smaller than container */
  z-index: -1;
  /* Places the background behind other content */
}

@media screen and (max-width: 540px) {
  .fixed-background-gif {
    width: auto;
  }
}

@media screen and (min-width: 540px) {
  .fixed-background-gif {
    width: 100%;
  }
}

a {
  color: #fff;
}

.row {
  margin-top: 16px;
}