* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}
.hero {
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(rgba(12, 3, 51, 0.3), rgba(12, 3, 51, 0.3));
  position: relative;
  padding: 0.5%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.back-video {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.content {
  text-align: center;
}
.content h1 {
  color: white;
  font-size: 5vw;
  font-weight: 600;
  transition: 0.5s;
  letter-spacing: 2px;

  text-shadow: 8px 0 10px #7a3e3e;
  
}
.content h1:hover {
  -webkit-text-stroke: 2px white;
  color: transparent;
}

.content a {
  text-decoration: none;
  padding: 14px 50px;
  color: white;

  margin: 10px;
  border: 2px solid white;
  font-size: 2vw;
  display: inline-block;
  transition: 0.5s;
  border-radius: 10px;
  font-weight: 400;
  margin: 40px;
}
.content a:hover {
  background-color: white;
  color: black;
  padding: 17px 50px;
}
