
body {
  margin: 0;
}

/* Smoke cursor particle styles */
.smoke {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  z-index: 9999;
  background: radial-gradient(circle at 40% 30%, rgba(240,240,240,0.95) 0%, rgba(200,200,200,0.85) 25%, rgba(130,130,130,0.55) 50%, rgba(60,60,60,0.18) 100%);
  mix-blend-mode: screen;
  will-change: transform, opacity;
  /* add a subtle smoky edge */
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* Flame cursor */
.flame {
  position: absolute;
  pointer-events: none;
  z-index: 10000;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 50% 30%, rgba(255,255,255,0.95) 0%, rgba(255,238,170,0.98) 12%, rgba(255,160,40,0.98) 35%, rgba(220,40,0,0.9) 60%, rgba(0,0,0,0) 100%);
  filter: drop-shadow(0 0 12px rgba(255,120,40,0.45));
  mix-blend-mode: screen;
  will-change: transform, opacity, left, top;
  animation: flicker 120ms infinite;
}

@keyframes flicker {
  0% { transform: translate(-50%, -50%) scale(1) rotate(-2deg); }
  25% { transform: translate(-50%, -50%) scale(1.08) rotate(1deg); }
  50% { transform: translate(-50%, -50%) scale(0.98) rotate(2deg); }
  75% { transform: translate(-50%, -50%) scale(1.06) rotate(-1deg); }
  100% { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
}

/* Flying bird animation */
.bird {
  position: absolute;
  pointer-events: none;
  z-index: 9998;
  font-size: 64px;
  will-change: transform;
}

@keyframes fly {
  0% {
    transform: translate(0, 0) scaleX(1);
    opacity: 1;
  }
  100% {
    transform: translate(var(--tx), var(--ty)) scaleX(1);
    opacity: 0;
  }
}

@keyframes fly-flipped {
  0% {
    transform: translate(0, 0) scaleX(-1);
    opacity: 1;
  }
  100% {
    transform: translate(var(--tx), var(--ty)) scaleX(-1);
    opacity: 0;
  }
}

.quote,
.author {
  font-family: "Lato", sans-serif;
  color: white;
  font-style: italic;
  font-weight: 100;
  text-align: center;
}

.author {
  font-weight: 400;
}

.bottom {
  margin: 0 60px;
}

.square {
  width: 400px;
  height: 400px;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  top: 50%;
  border-radius: 50%;
}

.top {
  font-family: "Oswald", sans-serif;
  margin: 110px 60px 0 60px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.8);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
}

h1,
h2 {
  color: white;
  text-align: center;
  font-weight: 700;
}

h2 {
  font-weight: 250;
}
h3{
  text-align: center;
}
video {
  height: 100vh;
  position: fixed;
}

img {
  position: absolute;
  right: 0;
  top: 0;
}

a:link {
  color: orange;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: pink;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: red;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: yellow;
  background-color: transparent;
  text-decoration: underline;
}

/* Style the video: 100% width and height to cover the entire window */
#myVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  transform: translateX(calc((100% - 100vw) / 2));
}

/* Add some content at the bottom of the video/page */
.content {
  position: fixed;
  border-radius: 25px;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
  width: 98%;

}


#myBtn:hover {
  background: #ddd;
  color: black;
}

.fullscreen-video-container {
  position: relative;
}
.fullscreen-video-container {
  height: 100vh; 
  width: 100vw;
}
.fullscreen-video-container {
  overflow: hidden;
}
.fullscreen-video-container video {
  position: absolute;
}
.fullscreen-video-container video {
  width: auto;
  height: auto;
}
.fullscreen-video-container video {
  min-width: 100%;
  min-height: 100%;
}
.fullscreen-video-container video {
  top: 50%;
  left: 50%;
}

.fullscreen-video-container video {
  transform: translate(-50%,-50%);
}
.fullscreen-video-container video {
  z-index: -1;  
}

.fullscreen-video-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.caption {
  position: absolute;
  top: 35%;
  width: 100%;

  padding-left: 10%;
  padding-right: 10%;
}
.GFG {
  color: white;
  /* font-size: 4vw; */
  /* @media screen and (max-width: 992px) { font-size: small}; 
  @media screen and (max-width: 992px) { font-size: small}; */
  text-shadow: -1px 1px 0 #000,
      1px 1px 0 #000,
      1px -1px 0 #000,
      -1px -1px 0 #000;
  padding-left: 2%;
  padding-right: 10%;
}

