.background-video {
  width: 100%;
  height: 100vh;
  position: absolute;
  inset: 0%;
}

.div-block {
  mix-blend-mode: normal;
  border: 0 solid #fff0;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.paragraph {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
}

.div-block-2 {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.button {
  color: #fff;
  -webkit-text-fill-color: inherit;
  background-color: #0000;
  background-clip: border-box;
  border: 0 solid #000;
  border-radius: 12px;
  margin-top: 14px;
  margin-bottom: 16px;
  padding: 14px 32px 16px 28px;
  font-family: Oswald, sans-serif;
  font-size: 18px;
  transition: background-color .2s ease-in-out;
}

.button:hover {
  background-color: #b71c1c00;
  box-shadow: 0 0 12px #b71c1c80;
}

.bold-text {
  font-family: Montserrat, sans-serif;
}

@media screen and (max-width: 479px) {
  .paragraph {
    font-size: 9px;
  }

  .button {
    padding-bottom: 14px;
    padding-right: 28px;
  }
}


