* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
}
.my-container {
  max-width: 1024px;
  padding: 0 15px;
  margin: 0 auto;
  overflow: hidden;
  text-align: center;
}
.v-header {
  height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  justify-content: center;
}
.fullscreen-video-wrap {
  position: absolute;
  width: 100%;
  height: 100vh;
  inset: 0;
  overflow: hidden;
}
.fullscreen-video-wrap video {
  min-width: 100%;
  min-height: 100%;
}
/* header overlay */

.header-overlay {
  background: #225470;
  position: absolute;
  inset: 0;
  opacity: 0.8;
  width: 100vw;
  height: 100vh;
  z-index: 1;
}

.header-content {
  z-index: 2;
}
.header-content h1 {
  font-size: 50px;
  margin-bottom: 0;
}

.header-content p {
  font-size: 1.5rem;
  display: block;
  padding-bottom: 2rem;
}

.header-content a {
  background: #34b3a0;
  color: #fff;
  font-size: 1.2rem;
  padding: 1rem 2rem;
  text-decoration: none;
  display: inline-block;
  border-radius: 10px 50px 10px 50px;
}
.header-content a:hover {
  opacity: 0.8;
}
