*{
  margin: 0;
  padding: 0;
  font-family: "montserrat",sans-serif;
}
.landing-page{
  width: 100%;
  height: 100vh;
  background: #000;
  position: relative;
  overflow: hidden;
}
.landing-page::after{
  content: "";
  attachment: fixed;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: url(bg.jpeg) no-repeat;
  background-size: cover;
  opacity: .4;
  animation: ;
}
@keyframes anim {
  50%{
    transform: scale(2);
  }
  100%{
    transform: scale(1);
  }
}
.page-content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 1;
  width: 100%;
  max-width: 800px;
  flex-direction: column;
  text-align: center;
  padding: 25px;
  margin-bottom: 100px
}
.page-content p{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #fff;
  text-align: center;
  margin-bottom: 40px
}
.page-content a{
  display: inline-block;  
  text-decoration: none;
  color: white;
  font-size: 13px;
  margin: 5px;
  text-align: center;
  background-color: transparent;
  border: 2px solid rgb(252, 252, 255);
  border-radius: 20px;
  padding: 12px 18px;
  font-weight: 500;
  margin-bottom: 40px
}
.page-content a:hover{
  color: #fff;
  background: #fff;
}
.text{
  padding: 18px;
  text-align: justify;
}
.text div{
  margin-bottom: 6px;
  }
}