/* Fonts Start */

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

/* Fonts End */

/* Body Start */

body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
}

/* Body End */

/* Typography Start */

h1 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  font-style: normal;
  color: #fecc1b;
}

/* Typography End */


/* Video Banner Start */

.video-banner {
  min-height: 100vh;
  width: 100%;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin: auto;
  justify-content: center;
  display: flex;
}

.video-banner-caption {
  background-color: rgba(1,10,53,.7);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}

@media screen and (max-width: 576px) {
  .video-banner-caption {
      display: flex;
      justify-content: center;
      align-items: center;
  }
}

/* Video Banner End */


/* Hero Start */

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #282c34;
}

.hero h1 {
  color: #61dafb;
  font-size: 3rem;
}

/* Hero End */