html {
    position: relative;
    width: 100%;
    height: 100%;
    font-size: 24px;
}

@font-face{
    font-family: 'Marana Black';
    src: url('../fonts/Marana Black.otf')
}

body {
    height: 100%;
    background: #fff;
    float: left;
    font-family: 'Marana Black';
}

#wrapper{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

#pageContainer {
    position: relative;
    padding: 0;
    min-height: 100%;
    margin-top: -150px;
    padding-top: 150px;
    padding-bottom: 0;
    overflow-x: hidden;
    box-sizing: content-box;
}

header{
    position: relative;
    width: 100%;
    padding-bottom: 34%;
    text-align: center;
}

footer{
    display: none;
    
    position: relative;
    width: 100%;
    padding: 20px 0;
    background-color: #000;
}

/********************************/
/**************Divs**************/
/********************************/

.big-image{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding-bottom: 34%;
    background-position: bottom;
    background-size: cover;
    z-index: -1;
}

.headerwrapper{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 300px;
}

header span{
    display: block;
    position: relative;
    top: 30px;
    text-align: center;
    font-size: 1rem;
    color: #fff;
    text-shadow: 0 0 3px #000;
}

header a{
    display: inline-block;
    margin: 110px auto 0;
    padding: 5px 10px 0;
    background-color: #1a5632;
    color: #fff;
    line-height: 30px;
    vertical-align: bottom;
    font-size: 1rem;
    transition: 0.15s;
}

header a:hover{
    background-color: #b4bd00;
    color: #fff;
}

.logowrapper{
    width: 100%;
    text-align: center;
}

#logo{
    position: relative;
    margin: auto;
    top: 59px;
    width: 400px;
}

/********************************/
/**********Other Pages***********/
/********************************/

/********************************/
/**************Menu**************/
/********************************/

/********************************/
/**************Heads*************/
/********************************/

/********************************/
/************Paragraphs**********/
/********************************/

/********************************/
/**************Buttons***********/
/********************************/

a, a:hover, a:link, a:visited, a:link:active, a:visited:active{ 
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

/********************************/
/**************Sliders***********/
/********************************/

/********************************/
/********************************/
/********************************/




@media only screen and (max-width: 800px) {
    
    header{
        height: 272px;
        padding-bottom: auto;
    }
    
    .big-image{
        height: 272px;
        padding-bottom: auto;
    }
    
    .headerwrapper{
        height: 200px;
    }
    
    header span{
        top: 0;
    }
    
    header a{
        margin: 40px auto 0;
    }
    
    #logo{
        top: 28px;
    }
}

@media only screen and (max-width: 400px) {
    

}