/* general configuration */
:root {
    --main-site-color: #C10000;
    --primary-color: #003C3B;
    --secondary-color: #00615f;
    --light-secondary-color: #007270;
    --box-color: #f0f0f0;
    --text-color: black;
    --secondary-text-color: white;
}

* {
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
}

body {
    min-height: 100vh;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    color: var(--text-color);
}

h1 {
    padding-bottom: 16px;
    font-size: xx-large;
    color: var(--main-site-color);
}

h2 {
    color: var(--secondary-color);
}

h3 {
    color: var(--light-secondary-color);
}

hr {
    margin-top: 24px;
    border: 0; 
    height: 3px; 
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

p {
    padding: 10px 0;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: var(--main-site-color);
}
/*
ul {
    padding-left: 30px;
}

ul li {
    padding: 5px 0 5px 0;
}
*/

.text {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 16px 16px 0 16px;
}

/*events & shows & member*/
#eventwrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
}

.event {
    padding: 20px; 
    background: var(--box-color);
    border-radius: 20px;
}

.news_picture img {
    width: 20%;
    float: left;
}

#showwrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 20px;
}

.show {
    text-align: center;
}

.show img {
    width: 220px;
}

#memberwrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;    
}

.member-item {
    text-align: center;
    justify-self: center;
}

.member-circle-leitung {
    margin-top: 10px;
    height: 250px;
    width: 250px;
    overflow: hidden;
    border-radius: 50%;
    border: 20px solid var(--light-secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.member-circle {
    margin-top: 10px;
    height: 250px;
    width: 250px;
    overflow: hidden;
    border-radius: 50%;
    border: 20px solid var(--box-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.member-circle img {
    height: 100%;
}

.member-circle-leitung img {
    height: 100%;
}

@media screen and (max-width: 800px) {
    #eventwrapper {
        grid-template-columns: 1fr;
    }

    #showwrapper {
        grid-template-columns: 1fr;
    }

    #memberwrapper {
        grid-template-columns: 1fr;
    }
}

ul.breadcrumb {
    max-width: 1200px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    list-style: none;
}

@media screen and (max-width: 800px) {
    ul.breadcrumb {
        padding-left: 16px;
    }
}
  
ul.breadcrumb li {
    display: inline;
    font-size: 12px;
}
  
ul.breadcrumb li+li:before {
    padding: 2px;
    color: black;
    content: ">\00a0";
}
  
ul.breadcrumb li a {
    color: var(--main-site-color);
    text-decoration: none;
}
  
ul.breadcrumb li a:hover {
    color: var(--primary-color);
    text-decoration: underline;
} 