/* caveat-brush-regular - latin */
/* caveat-brush-regular - latin */
@font-face {
    font-family: 'Caveat Brush';
    font-style: normal;
    font-weight: 400;
    src: local(''),
    url('../fonts/caveat-brush/caveat-brush-v6-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('../fonts/caveat-brush/caveat-brush-v6-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* montserrat-regular - latin */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: local(''),
    url('../fonts/montserrat/montserrat-v15-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('../fonts/montserrat/montserrat-v15-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* montserrat-600 - latin */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    src: local(''),
    url('../fonts/montserrat/montserrat-v15-latin-600.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('../fonts/montserrat/montserrat-v15-latin-600.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

:root {
    --green: #2F4F4F;
    --beige: #FAEBD7;
    --gold: #DAA520;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    /*background: var(--beige);*/
    font-size: 20px;
    line-height: 1.2;
}

#content {
    text-align: center;
    margin: auto;
    color: #999;
}

h1, h2 {
    font-weight: 400;
    margin: 0;
    color: var(--green);
    line-height: 1;
}

h1 {
    font-size: 7.5rem;
    color: var(--beige);
}

#content {
    text-align: center;
    margin: auto;
    color: #999;
    /* border-radius: 50%;*/
    /* border: 1px solid var(--green);*/
    height: 20rem;
    width: 20rem;
    display: flex;
    justify-content: center;
    align-items: center;
    /*animation: puls infinite 2s ease-in-out;*/
}

#content:hover {
    cursor: default;
}

@keyframes puls {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scale(.95);
    }
    100% {
        transform: scale(1);
    }
}

.mkLabel {
    font-family: 'Caveat Brush', 'Montserrat', Arial, sans-serif;
    color: var(--green);
    font-size: 1.35em;
    display: inline-block;
    margin-top: -.25em;
	transform: rotate(-5deg);	
}

#intro h2 {
	transform: rotate(-5deg);
	margin: 0.75em 0.5em 0.5em 1.5em;
    font-weight: 600;
}

.mkLabel.white {
    color: #fff;
}

h2 {
    font-size: 1.5rem;
}

img {
    max-width: 100%;
    width: 100%;
    height: auto;
}
#links {
    position: fixed;
    right: 0;
    bottom: 1em;
    opacity: .8;
}

#links a {
    font-weight: 400;
    text-decoration: none;
    display: block;
    background: #101010;
    color: white;
    font-size: 0.7em;
    padding: .8em .6em .8em .6em;
    text-align: left;
    margin-bottom: 0.25em;
}

#links a.github {
    height: auto;
    padding: 0;
}

#links a:hover {
    background: var(--green);
}

a#impressum {
    padding: .6em .4em .6em .4em;
}