 html, body{
     height: 100%;
 }
 .heropost{
     text-align: center;
        z-index: 10;
     h1, p, a{
        color: white;
     } 
     h1{
         font-size: 50px;
         
        @media only screen and (max-width: 767px) {
            font-size: 35px;
        }
     }
     p, a{
         font-size: 20px;
         text-decoration: none;
        @media only screen and (max-width: 767px) {
            font-size: 18px;
        }
     }
     a:hover{
         text-decoration: underline;
     }
     p{
         margin-bottom: 10px;
     }
     ul{
         margin: 0;
         padding: 0;
     }
 }
 .bg{
     z-index: -1;
     width: 100%;
     height: 100%;
     position: fixed;
    background-image: url('bg.jpg'); 
    background-size: cover; 
    background-repeat: no-repeat;
 }
 
.bg2{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: .6;
    z-index: 0;
}