body {
  margin: 0;
}
:root {
  --green: #2ca01c;
  --lightgreen: #74d348;
  --grey: #333333;
  --blue: #2bb7da;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.head-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
#videosWrapper {
  max-width: 100vw;
  max-height: 100vh;
}

.videoCSS {
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  background-size: auto;
  overflow: hidden;
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.section1 {
  position: relative;
  text-align: center;
}

.head__div {
  position: absolute;
  color: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  font-size: 2rem;
  width: 100%;
}

@media (max-width: 1080px) {
}

.head__div h1 {
  color: white;
  font-size: 3rem;
}
.head__div h2 {
  color: white;
  font-size: 1.6rem;
}
.head__div h2 span {
  color: var(--green);
  font-size: 1.6rem;
}

.txt-type {
  position: relative;
  margin-left: 10px;
}
.txt-type::after {
  content: "";
  position: absolute;
  right: -5px;
  width: 1px;
  height: 90%;
  border-right: 2px solid white;
  animation: blink 0.8s infinite;
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.header__content {
  position: relative;
  top: 0;
  left: 0;
}

.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--grey);
  z-index: 1;
  opacity: 0.85;
}
.header-content {
  z-index: 2;
  position: absolute;
}
:root {
  --clr-neon: #2ca01c;
  --clr-bg: hsl(131, 45%, 17%);
}

.button {
  background-color: var(--green);
}

.neon-button {
  background-color: var(--green);
  transition: all 0.2s ease-in-out;
}
.neon-button:hover {
  background-color: white;
  color: var(--lightgreen);
}

@media (min-width: 830px) {
  .head__texth1 {
    font-size: 4.5rem !important;
  }
  .head__text {
    font-size: 2.5rem !important;
  }
  .head__textbtn {
    font-size: 1.3rem !important;
  }
}
.head__texth1 {
  font-weight: bolder;
}
