body, html {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
    color: white;
    line-height: 1.5em;
    min-width: 1000px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("/static/img/background.jpg") no-repeat center center fixed;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
h1{
    font-size: 2.7em;
    line-height: 1.2em;
}
h3{
    font-size: 1.5em;
    line-height: 1.2em;
}
.topnav {
    padding: 25px 20px;
}
#header-logo{
    width: 150px;
    height: auto;
}
.menu{
    list-style: none;
    padding: 10px;
    margin:0;
    width: 100%;
    height: auto;
    display: inline;
}
.menu li{
    float: right;
    height: 100%;
}
.menu a{
    color: white;
    text-decoration: none;
    padding: 0 15px;
    font-size: 1.3em;
}
.active {
    font-weight: bold;
}
.menu a:hover{
    color: #ffed00;
}
.main-content{
    width: 95%;
    margin: 0 auto;
    text-align: center;
}
.imprint{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 20px;
    margin-top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 100px;
    padding: 10px;
}
@media only screen and (max-width: 1200px) {
    .imprint {
        grid-template-columns: 1fr 1fr;
    }
}
.imprint-item{
    padding: 10px;
    margin: 0 auto;
}
.imprint-item a{
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
}
.imprint-item a:hover{
    color: #ffed00;
}
.imprint-item p{
    padding: 0;
    margin: 0;
}
.bold{
    font-weight: bold;
    margin-bottom: 10px!important;
}
.newline:after{
    content: "\a";
    white-space: pre;
}