html {
  scroll-behavior: smooth;
  background-color: black;
  position: relative;
}

body {
  margin: 0;
  padding: 0;
  background-color: rgb(21, 21, 21);
  position: relative;
  width: 100%;
}

#wrapper {
  width: 100%;
}

#container {
  background-color: rgb(21, 21, 21);
  transition: all .5s;
  box-shadow: 0px 0px 30px rgba(50, 50, 50, 1);
  width: 100%;
}

#titleWrapper {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: row;

  justify-content: center;
  align-items: center;

  height: 500px;
  background-color: rgb(40, 40, 44);
  position: relative;

  max-width: 100vw;
}

#vidBack {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

#imgBack {
  position: absolute;
  object-position: center;
  object-fit: cover;

  min-height: 100%;
  min-width: 100%;
  max-width: 100%;
  max-height: 100%;
}

#topTitle {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

#mainTitle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 1;
  width: 100%;
  z-index: 0;
}

#title {
  font-family: 'Comfortaa';
  font-size: 30pt;
  margin: 0;
  color: rgb(200, 200, 200);
  white-space: nowrap;
  position: relative;
  transition: all .5s ease-out;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.subtitle {
  color: rgb(150, 150, 150);
  width: 80%;
  font-family: 'Comfortaa';
  font-size: 15pt;
  margin: 0 auto;
  margin-top: 10px;
  transition: all .1s;
}

.navToggleImg {
  height: 25px;
  width: 25px;

  display: block;
  margin: 0;
  margin-left: 20px;
  cursor: pointer;
  position: relative;
}

footer {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: rgb(24, 24, 24);
  font-size: 10pt;
  font-family: "Comfortaa";

  position: relative;
  color: rgba(255, 255, 255, .8);

  max-width: 100vw;
  overflow: hidden;

  z-index: 1;
  box-shadow: 0px 0px 5px rgb(0, 0, 0);
  text-align: center;
}

.footerText {
  vertical-align: top;
  position: relative;
  white-space: nowrap;
  height: 100%;
  display: inline-block;
  max-width: 100%;
}

#footerTextAnimated {
  overflow: hidden;
  transition: all 1s;
}


.cursor {
  position: relative;
}
.cursor:after {
  background-color: rgba(255, 255, 255, 255);
  content: '';
  position: absolute;
  display: block;
  height: var(--cursor-height);
  right: 0;
  top: 50%;
  width: 2px;
  transition: height .5s;
  transform: translateY(-50%);
  margin-left: 2px;
}

.blink:after {
   animation: cursor .8s infinite linear;
}

@keyframes cursor {
  0% {
    background: rgba(255, 255, 255, .3);
  }
  50% {
    background: rgba(255, 255, 255, 1);
  }
  100% {
    background: rgba(255, 255, 255, .3);
  }
}
