*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
       
}

html{
    
    color: #555;
    font-family: 'Lato','Arial', sans-serif;
    font-size: 20px;
    font-weight: 300;
    text-rendering: optimizeLegibility;
}

.row{
     
    max-width: 1140px;
    margin: 0 auto;
    
}

header {
 
    background-image: linear-gradient(rgba(0, 0, 0, 0.7),#000),url(img/hero.jpg);
    height: 100vh;
    background-size: cover;
    background-position: center;
}


.hero-text-box{
    
    position: absolute;
    width: 1140px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

h1 {
     color: #fff;
    font-size: 240%;
    margin: 0;
    text-transform: uppercase;
    font-weight: 300;
    word-spacing: 4px;
    letter-spacing: 1px;
}

.btn:link,
.btn:visited {
    
    border-radius: 200px;
    display: inline-block;
    padding: 10px 30px;
    font-weight: 300;
    text-decoration: none;
    transition: background-color 0.2s, border 0.2s, color 0.2s;
}

.btn-full:link,
.btn-full:visited {
    color: #fff;
    border: 1px solid #e67e22;
    background-color: #e67e22;
    margin-right: 15px;
}

.btn-ghost:link,
.btn-ghost:visited {
    color: #e67e22;
    border: 1px solid #e67e22;
}

.btn:hover,
.btn:active{
background-color: #bf6516;
}

.btn-ghost:hover,
.btn:active{
  border: 1px solid #bf6516;
    color: #fff;
}

@media only screen and (max-width: 800px){
    
h1 {
     color: #fff;
    font-size: 140%;
    margin: 0;
    text-transform: uppercase;
    font-weight: 100;
    word-spacing: 2px;
    letter-spacing: 1px;
}

.btn:link,
.btn:visited {
    
    border-radius: 50px;
    display: inline-block;
    padding: 10px 20px;
    font-weight: 200;
    text-decoration: none;
    transition: background-color 0.2s, border 0.2s, color 0.2s;
    
}
    
    .btntags,
    .headertext{
        
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    
}