/* Theme Name: ina-leder.de
Theme Description: Bootstrap Theme von kleinstadtfaktor.de
Author: Sven Müller
URI: http://www.kleinstadtfaktor.de/
*/

@import url('bootstrap/bootstrap.min.css');
@import url('css/main.css');

/* COLORS */

:root {
    --main-green: #d9d6a9;
    --middle-green: #98a633;
    --dark-green: #3c592e;
    --brown: #959173;
}

/* FONTS */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&family=Roboto:wght@300&display=swap');

/* MAIN */

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.7em;
    font-weight: 300;
}

h1, h2, h3 {
    font-weight: 300;
}

h1, h2 {
    font-size: 28px;
    margin-bottom: 50px;
    line-height: 40px;
}

h3 {
    font-size: 20px;
}

@media (min-width: 769px) {
    h1, h2 {
        font-size: 36px;
        line-height: 50px;
    }   

    h3 {
        font-size: 24px;
    }
}

a {
    font-weight: 700;
    text-decoration: underline;
    color: #333;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}

a:hover {
    text-decoration: none;
    color: #98a633;
}

.txt-bg-white {
    background-color: #fff;
    padding: 5px;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}