body{
  background-image: url(../img/background.jpg);
  background-size: cover;
  color: white;
}

.main{
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.main::before{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #F0270B;
  mix-blend-mode: multiply;
  z-index: -1;
}

.content{
  width: 100%;
  padding: 0 30px;
  box-sizing: border-box;
  max-width: 490px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

h1, p{
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 25px;
  font-family: 'Lexend', sans-serif;
  color: white;
  margin-left: 29%;
  white-space: nowrap;
}

a{
  color: white
}

img{
  display: block;
  width: 100%;
}

@media screen and (min-width: 360px) {
  h1, p{
    font-size: 14px;
  }
}

@media screen and (min-width: 768px) {
  h1, p{
    font-size: 20px;
  }
}
