@charset "utf-8";

/* colors:
 * yellow: #E4E292;
 * */

* {
    margin: 0;
    padding: 0;
}

ul, li {
    list-style-type: none;
}

body {
    background: #000000 url("images/tree_edge.png") repeat-x fixed 0 0;
    color: white;
    background-position: top center;
    font-family: 'Amatic SC';
    font-size: 26px;
    line-height: 1.5;
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    color: #ffffff;
    transition: all .5s;
}

a:hover {
    color: #E4E292; /* yellow */
}

h1, h2, h3 {
    font-family: 'Metamorphous';
    font-weight: normal;
    line-height: 1.3;
}

h1 {
    font-size: 50px;
}

h2 {
    font-size: 40px;
}

@media screen and (max-width: 600px) {
    h1 {
        font-size: 30px;
        font-size: 10vw;
    }
    
    h2 {
        font-size: 20px;
        font-size: 8vw;
    }
}

p {
    margin: 15px 0;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.top_nav {
    padding: 20px 0;
    text-align: center;
    font-size: 26px;
    text-transform: uppercase;
}

@media screen and (max-width: 600px) {
    .top_nav {
        font-size: 28px;
    }
}

.top_nav li {
    display: inline-block;
    margin: 0 10px;
}

.top_nav li a {
    display: block;
}

.banner {
    text-align: center;
}

.banner img {
    width: 100%;
    max-width: 1100px;
}

.section1 {
    padding: 30px 0 15px;
    background: #173219 url("images/profile_krampus2.png") no-repeat;
    background-size: contain;
    background-position: right center;
}

@media screen and (max-width: 600px) {
    .section1 {
        background-size: 120%;
    }
}

.section1 .text_wrap {
    padding-right: 17%;
}

.section2 {
    margin-bottom: -10px;
}

.section2 img {
    width: 100%;
}

.section3 {
    padding: 30px 0 15px;
    background: #000000 url("images/woodcut.png") no-repeat;
    background-size: contain;
    background-position: right bottom;
}

.section3 .text_wrap {
    padding-right: 17%;
}

.section4 {
    padding: 30px 0 15px;
    background-color: #252525;
    text-align: center;
}

.section4 h2 {
    line-height: 1.5;
}

.section4 h1, .section4 h2, .section4 p {
    text-align: left;
}

.section4 img {
    width: 100%;
    max-width: 1100px;
}

.section4 a {
    color: #e91c24; /* red */
}

.section4 a:hover {
    color: #E4E292; /* yellow */
}

.section4 a.button {
    background-color: #4c6636; /* green */
    color: #ffffff;
    font-family: 'Metamorphous';
    text-transform: uppercase;
    text-align: center;
    padding: 10px 15px;
    margin: 15px auto;
    display: inline-block;
    font-size: 25px;
}

.section4 a.button:hover {
    background-color: #384D25; /* dk green */
}

.c {
    display: inline-block;
    padding: 15px;
    vertical-align: top;
    width: 30%;
}

.c img {
    max-width: 300px;
    width: 100%;
}

.section5 {
    padding: 30px 0 15px;
    background-color: #252525;
}

.f_left {
    float: left;
    margin: 5px 20px 15px 0;
}

.f_right {
    float: right;
    margin: 5px 0 15px 20px;
}

.section5 p {
    margin: 30px 0;
}

p#credit {
    font-size: 20px;
}

.orig_krampus {
    max-width: 600px;
    width: 100%;
    margin: auto;
    display: block;
}

.footer {
    padding: 15px 0;
    background-color: #e91c24; /* red */
    text-align: center;
}

.footer img {
    width: 100%;
    max-width: 1100px;
}

.footer p {
    font-size: 20px;
}

.footer a {
    text-decoration: underline;
}

.footer a:hover {
    text-decoration: none;
}


