html {
  font-size: 62.5%;
  -webkit-font-smoothig: antialiased;
  height: 100%;
  scroll-behavior: smooth;
  background-color: #000;
}

body {
  margin: 0;
  word-wrap: break-word;
  -ms-word-wrap: break-word;
  font-family: "Poppins", Sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins";
  margin: 0 0 20px;
}

*::-moz-selection {
  background-color: #000000;
  color: #ffffff;
}

*::selection {
  background-color: #000000;
  color: #ffffff;
}

a {
  text-decoration: none;
  color: #000;
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

.button {
  text-decoration: none;
  padding: 12px 30px;
  text-align: center;
}

.style-2 {
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 5px;
  border-style: solid;
  border-width: 2px;
  border-color: #fff;
  background: transparent;
  color: #fff;
  transition: 0.4s;
}

.style-2:hover {
  background-color: rgba(255, 255, 255, 0.18);
  transform: translateY(10px);
}


/*-----------------------------------------------------------------------------------*/
/*  2. video
/*-----------------------------------------------------------------------------------*/

.viewport-header {
  position: relative;
  display: flex;
  background-color:rgba(128, 128, 128, 0.6 );

  font-family: 'Syncopate', sans-serif;
  color: #ffffff;
  font-size: 1.8rem;
  line-height: 2.8rem;
  text-align: left;
  padding: 10px;
}
.viewport-header a {
  color: #ffffff !important;
}

/* 3.1 Video Background */
.bg-video-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: calc(100vh);
  display: flex;
  justify-content: center;
}

.video-bg {
  position: fixed;
}

.video-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: 3px 3px;
  background-color: #000000;
  opacity: 0.3;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
  z-index: 2;
}

.video-content {
  position: absolute;
  z-index: 10;
  width: 75%;
  top: 54.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.video-title h1 {
  font-size: 5.8rem;
  line-height: 1.2em;
  color: #fff;
  text-transform: none;
  margin-bottom: 5px;
  margin-top: 2px;
  text-align: center;
}

.signature-wrap {
  margin: 30px 0 30px;
}

.signature-wrap img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

h2.author-name {
  font-size: 18px;
  text-align: center;
  font-weight: 300;
  line-height: 44px;
  text-transform: capitalize;
  color: #ffffff;
  letter-spacing: 2px;
  margin-top: -14px;
}

.video-button {
  display: flex;
  justify-content: center;
}

.video-button .button {
  margin-right: 20px;
}