body {
    background-image: url("../img/vorhang.jpg") ;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: black;
}

body .container {
    background: url("../img/opacity_pixel.png") repeat;
}

#title {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
}

#title h1 {
    font-size: 5rem;
    text-align: center;
    font-family: "Kapakana", cursive;
    font-weight: 400;
    font-style: normal;
    line-height: 80%;
    word-wrap: normal;
}

#title .headline {
    width: 80vw;
}

#title img {
    min-height: 3rem;
    max-height: 5rem;
    margin: 1rem;
}

@media (width <= 768px) {
    #title h1 {
        font-size: 2rem
    }
    #title img {
        min-height: 1rem;
        max-height: 2rem;
        margin: 0.2rem;
    }
}

main > *, footer > * {
    padding: 1rem;
    text-align: center;
}

#termine {
    display: flex;
    justify-content: center;
}

#termine table {
    width: auto;
    border: 2px solid black;
    border-collapse: separate;
}

#termine thead th {
    background-color: #999;
}

#termine tbody.even td {
    background-color: #FFF;
}

#termine tbody.odd td {
    background-color: #CCC;
}

footer {

}

