*{
    text-decoration-style: none;
    text-underline-position: none;
    padding:0;
    margin:0;
    list-style: none;
    text-decoration-line: none;
    font-family: serif;

/*    border:solid 1px black;*/
    
}

h1,
h2,
h3,
h4,
h5{
    font-family: "Big Shoulders", sans-serif;
    font-weight: 200;
    font-style: normal;
    letter-spacing: .02em;
}

 header ul li a{
    font-family: "Big Shoulders", sans-serif;
    font-weight: 100;
    font-style: normal;
     letter-spacing: .1em;
     
}

p{
    font-family: sans-serif;
    font-size: 1em;
}


html{
    height: 100%;
    width: 99%;
    display: flex;
    flex-direction: column;
        
    margin: auto;

/*    ---------------        hero image        --------------------    */
/*    background: url(../img/bk2.JPG);*/
        background-color: black;
    background: url(../img/bkpage.png);
    background-repeat: no-repeat;
    background-size:cover;
    margin: auto;
    background-position:bottom;
    background-size: 2000px;
    background-blend-mode:multiply;

}


body{
    height:100%;
/*    width: 80%;*/
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-width: 1920px;
    margin: auto;

/*    border:solid black;*/
    align-items:center;
/*    overflow: hidden;*/
    
}


/*                 -----------------        Home Page             ----------         */

main{
    height: 100%;
    width: 100%;
    max-height: 15em;
    display: flex;
    flex-direction: column;
    justify-content:flex-start;
/*    align-content: center;*/
/*    margin: auto;*/
    margin: 7em 0;
    padding-top:1em;
     
    background-color: rgba(0, 0, 0, 0);
}

div.hero{
    
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width:100%;
    height: 100%;
/*    padding-top: 5%;*/
    

} 

#headline{
    text-align: center;
    color:white;
    margin: 3em auto 0 auto;
/*    background-color: antiquewhite;*/
    padding:1em;
/*    padding-top: 2em;*/
    padding-bottom: .5em;
/*    width: 100%;*/    
    font-size: 3em;
    font-weight: 600;
    text-shadow: 0 0 5px black;
}

.help{
    margin: auto;
    margin-top:1em;
    margin-bottom: 1em;
    color:white;
    font-size: 1.8em;
    font-weight: 500;
    text-shadow: black 5px 5px 5px;
    
}


/*        ------------   button ----------- */
form{
    margin-top: 7em;
    display:flex;
}

.cta{
    padding:1.1em;
    font-size: 1.4em;
    color: white;
    background-color:#31432c;
    box-shadow: 8px 8px 0 0 rgba(0, 0, 0, 0.47);
    margin: 3em auto;
    width: 16em;
    border-radius: 1em 1em 1em 1em;
    
/*    */
    
}

.cta:hover{
/*    background-color: white;*/
/*    color:black;*/
    box-shadow: 0px 3px 0 0 rgba(0, 0, 0, 0.71);
    transform:translate(1px,3px);
}


footer{
/*   position: absolute;*/
    height: 23em;
    width:100%;
    background-color: #336d33;
    display: flex;
/*    border:solid 3px red;*/
    margin: 0;

}

/*   -----------------       MOBILE TIME      -------------*/


@media screen and (max-width: 800px) {
    
    body{
        width:100%;
        display: flex;
        flex-direction: column;
        justify-content:flex-start;
        align-content: center;
        margin: 0;
        background-color: rgba(0, 0, 0, 0.44);
        
        
    }
    .hero{
        
    }
    h2#headline{
        
        font-size: 2em;
    }
     h2.help{
         width:80%;
        font-size: 1.6em;
        text-align: center;
    }
}