@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "poppins", "roboto", sans-serif;
}

body .video-container {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body .video-container video {
  /* 100% de largura e altura */
  min-width: 100%;
  min-height: 100%;
  /* Definir largura e altura como automático evitar que o navegador estique ou esmague o vídeo */
  width: auto;
  height: auto;
  /* Centralizar o vídeo */
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

body .container {
  z-index: 1;
  background-color: rgba(17, 17, 17, 0.795);
  position: fixed;
  width: 100vw;
  height: 100vh;
}

body .container h2 {
  height: 100%;
  font-size: 60px;
  font-family: "poppins";
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
/*# sourceMappingURL=main.css.map */