/* Native elements */
html {
    font: 14px Arial, Verdana, Helvetica, sans-serif;
    color: #111;
}
body {
    padding: 0;
    margin: 0;
}
h1, h2, h3, h4 {
    color: #e37a2b;
    font-family: 'BebasNeueRegular', sans-serif;
    font-weight: normal;
}
h1 {
    margin: 40px 0;
    text-align: center;
}
p {
    margin-bottom: 30px;
}
a {
    color: #e37a2b;
}
ul {
    padding-left: 1em;
}
li {
    margin: 5px 0;
}
input[type=reset], input[type=submit], input[type=button] {
    background: none;
    border: #e37a2b 1.5px solid;
    padding: 5px 20px;
    color: #e37a2b;
    border-radius: 2px;
    cursor: pointer;
}
input[type=reset]:hover, input[type=submit]:hover, input[type=button]:hover {
    color: #fff;
    background: #e37a2b;
}

/* Wrapper */
.wrapper {
    margin: 0 200px;
}

/* Header */
.header {
    margin: 20px 0;
    height: 75px;
}
.header img {
    height: 100%;
    float: left;
}
.header ul {
    margin: 0;
    padding: 0;
    text-align: right;
    padding-top: 25px;
}
.header ul li {
    list-style-type:none;
    display: inline-block;
}
.header ul li a {
    margin: 0 0 0 20px;
    text-decoration: none;
    color: #111;
    border: #ffffff 2px solid;
    transition: border .1s;
}
.header ul li:first-child a {
    margin: 0;
}
.header ul li a:hover {
    border-bottom: #e37a2b 2px solid;
}
.header ul li.active a {
    color: #e37a2b;
    border-bottom: #e37a2b 2px solid;
}

/* Content */

/* Footer */
.footer {
    clear: both;
}
.footer p {
    text-align: center;
    color: #969696;
    font-size: 12px;
    padding-top: 100px;
}

/* Reusable classes */
span.name {
    font-weight: bold;
}

.vcard .fn {
    color: #e37a2b;
}
.vcard .adr span {
    display: block;
}

/* Screen size changes */
@media (max-width: 1000px) {
    .wrapper {
        margin: 0 100px;
    }
}
@media (max-width: 750px) {
    h1 {
        text-align: left;
    }
    
    .wrapper {
        margin: 0 20px;
    }
    
    .header {
        text-align: center;
        height: auto;
    }
    .header img {
        float: none;
        height: auto;
        max-width: 450px;
        width: 100%;
    }
    .header ul {
        text-align: center;
        margin: 20px 0;
        padding: 0;
    }
}