.hero {
    /* Sizing */
	/*scroll feature need this below*/
    /*
	width: 100vw;
    height: 100vh;
    */
    /* Flexbox stuff */
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* Text styles */
    text-align: center;
    color: white;
    
    /* Background styles */
    background-image: linear-gradient(rgba(0, 0, 0, 0.4),rgba(0, 0, 0, 0.2)), url('https://townecarolinas.com/themes/townebank-responsive/images/careers-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /*background-attachment: fixed;*/ /* make the scroll feature*/
}

.hero h1 {
    /* Text styles */
    font-size: 2em; /*5*/
	border: solid 1px;
    padding: 20px 50px;
    
    /* Margins */
    margin-top: 25px;/*0*/
    margin-bottom: 6.5em; /*0.5*/
}

.hero .btn {
    /* Positioning and sizing */
    display: block;
    width: 200px;
    
    /* Padding and margins */
    padding: 1em;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    
    /* Text styles */
    color: white;
    text-decoration: none;
    font-size: 1.5em;
    
    /* Border styles */
    border: 3px solid white;
    border-radius: 20px;
    
    /* Background styles */
    background-color: rgba(147, 112, 219, 0.8);
}