@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

body {
  overflow-x: hidden;
  font-family: 'Lato', sans-serif;
  color: #ffffff;
}

.video-background {
  position: relative;
  zoom: 0.5;
  min-height: 200vh;
  background-color: rgba(0, 0, 0, 0.5);
}

.caption {
  position: absolute;
  top: 28%;
  width: 100%;
  padding: 2rem;
}
.caption h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: .2rem;
  text-shadow: .1rem .1rem .8rem black;
  padding-bottom: 3rem;
}
.caption h2 {
  font-size: 2rem;
  text-shadow: .1rem .1rem .5rem black;
  padding-bottom: 1rem;
}
.caption h3 {
  font-size: 2rem;
  text-shadow: .1rem .1rem .5rem black;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/*============= Mobile =============*/

@media (max-width: 896px) {
  .caption h1 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: .2rem;
    text-shadow: .1rem .1rem .8rem black;
    padding-bottom: 1.5rem;
  }
  .caption h2 {
    font-size: 1rem;
    text-shadow: .1rem .1rem .5rem black;
    padding-bottom: 0.5rem;
  }
  .caption h3 {
    font-size: 1rem;
    text-shadow: .1rem .1rem .5rem black;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .btn-lg {
    font-size: 1rem;
  }
}


/*============ BOOTSTRAP BREAK POINTS:

Extra small (xs) devices (portrait phones, less than 576px)
No media query since this is the default in Bootstrap

Small (sm) devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

Medium (md) devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

Large (lg) devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

Extra (xl) large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }

=============*/