body {
    font-family: 'Open Sans', sans-serif;
}
#header {
    height: 100px;
    background-image: url("../images/header-bg.png");
    background-repeat: repeat-x;
    margin-bottom: 0px;
}
#header p {
    color: white;
    padding-top: 40px;
    padding-left: 30px;
    font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 46px;
}

h1, h2, h3{
    font-family:  'Ubuntu', sans-serif;
    font-weight: 500;
    line-height: 1.2em;
}

h1 {
    margin: 30px 0 0 0;
    padding: 10px 0 10px 0;
    margin-bottom: 10px;
    /*border-bottom: 1px solid #ccc;*/
    color: #83341a;
    background: inherit;
}
h2 {
    padding: 20px 0 10px 0;
    margin: 0 0 10px 0;
    font-size: 150%;
    color: #83341a;
    background: inherit;
    border-bottom: 1px solid #ccc;
}
h3 {
    padding: 20px 0 10px 0;
    margin: 0 0 10px 0;
    border-bottom: 1px solid #ccc;
    font-size: 150%;
    color: #83341a;
    background: inherit;

}

.thumbnail h3{
    border-bottom:0;
    font-size:130%;
    padding: 10px 0;
    margin:0;
}

.article-image{
    float : left;
    padding: 5px;
    border:1px solid #eee;
    margin: 0 10px 5px 0;
}

.googlesuche{
    padding: 20px 10px 0px 10px;
}

#footer {
    background-color: #552211;
    background-color: #555555;
    color: white;
    margin: 0;
    border-top: 5px solid #d07253;
    height:50px;
}
#footer a {
    color: #eee;
}
#footer .column {
    padding: 3px 3px;
}
#footer p {
    text-align: center;
    padding-top: 15px;
    margin: 0;
}
#main {
    margin: 0;
}
/*LINKS*/
a, a:visited {
    color: #d07253;
    background: inherit;
    /*text-decoration: underline;*/
}
a:hover {
    color: #833c1a;
    background: inherit;
    text-decoration: underline;
}

#recipe .zutaten, .zubereitung {
    padding: 20px 0 10px 0;
    margin: 0;
    font-weight:bold;
    font-size:120%;
    color: #83341a;
    background: inherit;
}
#recipe ul {
    margin-left: 1.5em;
    margin-top: 0.5em;
    margin-bottom: 0px;
    padding-left: 0.5em;
    padding-bottom :0;
}
#recipe li {
    list-style: disc;
    padding-bottom: 0.3em;
    color: #d07253;
}
#recipe .nodisc {
    margin-left: 0em;
}
#recipe .nodisc li {
    list-style: none;
}
#recipe .nodisc a {
    color: #833C1A;
}
#recipe p {
    margin: 0px;
    padding: 0.3em 0 0.3em 0;
    margin-left: 0.5em;
}
.no-mobile{
    display:block;
}

.mobile{
    display:none;
}


/* Bootstrap */
/* Landscape phone to portrait tablet */
@media (max-width: 767px) {
    /* Padding für body auf 0, damit Header und Footer über die ganze Breite gehen
        dafür muss .container-fluid padding bekommen */
    body {
        padding-right: 0px;
        padding-left:  0px;
    }
    .container-fluid {
        padding: 0 20px;
    }
    #header{
        height:40px;
        background: url("../images/header-bg-mini2.png");
    }
    #header p{
        padding-top: 10px;
        font-size: 180%;
    }
    .no-mobile{
        display:none;
    }
    
    .mobile{
        display:block;
    }

}

