.parallax {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  height: 100vh;
}

.parallax-background {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  background-color: #04f404;
}

.parallax-placeholder {
  position: absolute;
  z-index: -1;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.parallax-content {
  /*height: 100vh;*/
  color: white;
  padding: 2em 1rem;
  width: 100vw;
}

.parallax-content p {
  font-size: 1.5em;
  text-align: center;
}

.parallax-content .btn {
  width: 100px;
  /*margin: auto;*/
}

.parallax-content h1 {
  font-family: arial black;
  font-size: 50px;
  color: white;
  margin: 0px;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
}

