
body {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  overflow-x: hidden;
}
.header {
	width: 100%;
  height: 80vh;
  display: flex;
  align-items: center;
  color: #fff;
  z-index: -10;
	position: absolute;
	background-color:  rgba(0,0,0,0.5);
}

.content {
	width: 100%;
	height: 80vh;
	background-color: black;
}

.header-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  background-color:black;
}

.header-video video {
  min-width: 100%;
  min-height: 80vh;
	background: rgba(0,0,0,0.0.5)
}

.header-overlay {
  height: 100vh;
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  background: #303952;
  z-index: 1;
  opacity: .85;
}

.header-content {
  z-index: 2;
}

.header-content h1 {
  font-size: 50px;
  margin-bottom: 0;
  font-family: 'Lobster', cursive;
}

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

.btn {
  background-color: #A52A2A;
  color: #fff;
  font-size: 1.2rem;
  padding: 1rem 2rem;
  text-decoration: none;
  display: inline-block;
  border-radius: 15px;
  border:groove;
  text-align: center;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}

@media (max-width: 720px) {
  .content {
    padding: 0 3rem 0 3rem;
  }
}