@font-face {
    font-family: 'Miriam Libre';
    src: url('../font/MiriamLibre-Regular.ttf') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Sanchez';
    src: url('../font/Sanchez-Regular.ttf') format('woff');
    font-weight: normal;
    font-style: normal;
}

html, body{
    margin: 0;
    font-family: 'Miriam Libre', sans-serif;
}
html{
    background-color: #555;
    background-image: url("../img/MarcoHintergrundbild.jpg");
    background-position: 60% center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 100vh;
}

.header{
    height: 50px;
    width: 100%;
    background-color: #161313;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 0 50px black;
    z-index: 1; /* to avoid overlap from transformed img in gallery */
}

.header .menu{
    width: 1000px;
    margin-left: calc(50% - 500px);
}

.menu_mobile, .burger{
    display: none;
}

.menu .item{

    color: white;
    float: left;
    padding: 13px;
    cursor: pointer;
    transition: color .1s;
}

.menu .item a, .menu_mobile .item a{
    text-decoration-line: none;
    color: white;
}

.menu .item a:hover, .menu_mobile .item a:hover{
    color: #e5ac70;
}

.menu .fb{
    float: right;
    cursor: pointer;
    background-image: url("../img/facebook-logo-png-white-facebook-logo-png-white-facebook-icon-png--32.png");
    width: 50px;
    height: 50px;
    background-size: cover;
}

.content_wrapper {
    width: 1000px;
    margin-left: calc(50% - 500px);
    margin-top: 50px;
}

.content{
    width: 500px;
}

.content h1{
    margin-top: 200px;
    margin-bottom: 0;
    color: #661316;
    text-transform: uppercase;
    font-size: 70px;
    text-shadow: 0 0 1px #000;
    line-height: 66px;
}

.content > h2{
    color: white;
    margin-top: 0;
    margin-bottom: 50px;
    font-size: 19px;
    font-weight: 400;
    font-family: 'Sanchez', serif;
    /*font-style: italic;*/
    text-shadow: 0 0 10px #000;
}

.content .box{
    padding: 30px;
}

.content .box h2{
    margin-top: 0;
}

.content .box h2:after{
    width: 100%;
    height: 2px;
    content: "";
    display: block;
    margin: 4px 0;
}

.content .box.black h2:after{
    background-color: white;
}

.content .box.white h2:after{
    background-color: black;
}

.content .box.black
{
    color: white;
    text-shadow: 0 0 10px #000000;
    background-color: rgba(0,0,0,0.3);
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.content .box p{
    font-family: "Times New Roman";
    font-style: italic;
    font-size: 18px;
}

.content .box a{
    color: inherit;
    font-style: normal;
}

/* Gallery */
.content.gallery{
    width: 100%;
}

.galleryCol{
    float: left;
    width: 50%;
}

.galleryCol img{
    width: calc(100% - 20px);
    margin: 0 2px 20px 0;
    display: block;
    border: 20px solid white;
    box-sizing: border-box;
    cursor: pointer;
    transition: transform .2s;
    box-shadow: 3px 3px 8px black;
}

.galleryCol img:hover{
    transform: scale(1.02);
}

audio{
    width: 100%;
    margin-bottom: 20px;
    margin-top: 5px;
}

.clear{
    clear:both;
}

/* sound player */

#soundlist{
    margin-top: 5px;
}
.listEntry{
    cursor: pointer;
}
.listEntry:hover{
    color: #e5ac70;
}
