/*----------------------------------------*/
/*BASIC SETUP*/
/*----------------------------------------*/

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

html {
    background-color: #000;
    color: #555;
    font-family: "Metrophobic", "Arial", sans-serif;
    font-size: 20px;
    font-weight: 300;
    text-rendering: optimizeLegibility;
}

/*----------------------------------------*/
/*REUSABLE COMPONENTS*/
/*----------------------------------------*/

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

section {
    padding: 80px 0px;
    
}

.box {
    padding: 1%;
    
}

.clearfix {zoom: 1}
.clearfix:after {
    content: '.';
    clear: both;
    display: block;
    height: 0px;
    visibility: hidden;
}

/*----------------------------------------*/
/*HEADINGS*/
/*----------------------------------------*/

h1,
h2,
h3 {
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}

h1 {
    margin-top: 0px;
    margin-bottom: 40px;
    font-size: 240%;
    word-spacing: 4px;
    letter-spacing: 1px;
}

h2:after {
    display: block;
    height: 2px;
    background-color: #861000; 
    content: " ";
    width: 250px;
    margin: 0px auto;
    margin-top: 15px;
}    

/*----------------------------------------*/
/*HEADER*/
/*----------------------------------------*/

header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(./resource/img/cafe.gif);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-right: 1px solid #fff;
    height: 100vh;
}

span {
    color: #aa4437;
    font-weight: 600;
}

.mainNav {
    text-align: center;
    list-style: none;
    margin-top: 25px;
    margin-bottom: 30px;
}

.mainNav li {
    display: inline-block;
    margin-left: 40px;   
}

.mainNav li a:link,
.mainNav li a:visited {
    padding: 8px 0px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 90%;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.2s;
}

.mainNav li a:hover,
.mainNav li a:active {
    border-bottom: 2px solid #52863a;
    
    
}