* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100vh;
}

body {
    height: 100vh;
}

@font-face {
    font-family: 'Romanesco';
    font-style: normal;
    font-weight: 400;
    src: local('/Romanesco Regular'), local('/Romanesco Regular'), url('Gestaltung/Romanesco-Regular.ttf') format('truetype');
    
}



 

.startseite, .vcwseite, .vorstandsseite, .veranstaltungsseite, .kontaktseite, .kontakt_vorstand, .bildergalerie, .videogalerie, .gb, .blog {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    color: #000;
    background-color: #3F89E7;
    color: #EFEFEF;
}


h1, h2 {
    font-family: Arial, sans-serif;
    font-size: 1rem;
}

h1 {
    text-align: center;
    font-size: 1.8rem;
}



.container {
    grid-area: container;
}

.navigation {
    grid-area: navigation;
}

.ueberschrift {  
    grid-area: ueberschrift;  
}

.artikel {
    grid-area: artikel;
}

.fussleiste {
    grid-area: fussleiste;
}
    
.container {
    display: grid;
    grid-template-areas: 
    "navigation"
    "ueberschrift"
    "artikel"
    "fussleiste"
    ;
    width: 90%;
    margin: 0.5em auto;
}
              
.navigation ul {
    list-style-type: none;
}

.navigation  li {
    margin-bottom: 4px;
}

.navigation a {
    color: #000; 
    text-align: center;
    background-color: #4895A3; 
    display: block;
    width: 90%;
    margin: auto;
    padding: 0.5em;
    border: 2px solid #455563;
    border-radius: 6px;
    font-weight: bold;  
}





.trennlinie {
    display: none;
}

.logo {
    width: 300px;
    margin: auto;
}

.fussleiste {
    text-align: center;
    margin: 0.5em;
}

/****************** START BILDER ******************/
                  
figure {
    background-color: #FFFFFF;
    border: 1px solid #000;
    padding: 0.2em;
    border-radius: 8px;
}

figcaption {
    text-align: center;
    border-top: 1px solid #000;
    color: #000;
}

figcaption a {
    color: #000;
    font-weight: bold;
}

.einzelbild {
    margin-bottom: 1em;
}

.bilddesign {
    border-radius: 50%;
    width: 180px;
    height: 180px;
    box-shadow: 3px 3px 3px #808080;
    display: block;
    margin: auto;
}
                                     
/****************** ENDE BILDER ******************/

.fussleiste a {
    color: #EFEFEF;
}

                /* hamburger menue start */

.hamburger {
    display: none; /* Standardm??ig ausblenden */
    text-align: right;
    font-size: 1.8rem;
    margin-right: 0.7em;
    margin-bottom: 0.5em;
}

.linkliste {
    display: block; /* Standardanzeige, wenn CSS nicht geladen wird */
}

/* Bei kleinen Bildschirmen das Hamburger-Symbol anzeigen und die Linkliste ausblenden */
@media screen and (max-width: 600px) {
    .linkliste {
        display: none;
    }

    .hamburger {
        display: block;
    }

    /* Die Checkbox nur auf kleinen Bildschirmen anzeigen */
    #aufklapp {
        display: none;
    }

    #aufklapp:checked + .linkliste {
        display: block;
    }
}

/* Auf gr??eren Bildschirmen die Checkbox ausblenden und die Links anzeigen */
@media screen and (min-width: 600px) {
    #aufklapp {
        display: none;
    }

    .linkliste {
        display: block;
    }
}


                 /* hamburger menue ende */

table {
    border: 1px solid #000;
    border-collapse: collapse;
}

th {
    border: 1px solid #000;
    border-collapse: collapse;
    background-color: #fff;
    padding: 0.3em;
    color: #000;
}

td {
    border: 1px solid #000;
    border-collapse: collapse;
    padding: 0.3em;
    color: #000;
}

th.kurz, td.kurz {
    width: 9em;
}

th.lang, td.lang {
    width: 20em;
}

tr:nth-child(odd) {
   background-color: #DDE4FF;
}

tbody tr:nth-child(even) {
   background-color: #FFE37F;
}

/********** START FORMULAR **********/

form {
    background-color: #4895A3;
    width: 20em;
    padding: 1em;
    border-radius: 8px;
    box-shadow: 3px 3px 3px #808080;
    margin: auto;
}

label, input, textarea {
    display: block; /* Stellt sicher, dass jedes Element in einer neuen Zeile angezeigt wird */
    margin: 0 auto; /* Zentriert das Element horizontal */
    text-align: center; /* Zentriert den Text innerhalb des Labels */
}

input {
    width: 10em;
}

input:focus, textarea:focus {
    background-color: lightblue;
    text-align: left;
    padding-left: 0.1em;
}

textarea {
    width: 20em;
    height: 7em;
}

.absenden {
    background-color: #4879A3;
    width: 7em;
    padding: 0.3em;
    font-size: 1rem;


}

.absenden:focus {
    background-color: #4879A3;
    width: 10em;
    padding: 0.5em;
    font-size: 1rem;
    border: none;
    text-align: center;
}

.meldung {
    color: #FF0000;
    font-weight: bolder;
}

.meldung_schwarz {
    color: #000;
}

/********** ENDE FORMULAR ***********/

/********** START EINZELFORMULAR ***********/
.abstand_ek {
    margin-bottom: 1em;
}

.bilddesign_ek {
    width: 150px;
    height: auto;
    border-radius: 100%;
    float: left;
    padding: 0.3em;
}

.text_ek {
    border: 1px solid #000;
    padding: 0.3em;
    border-radius: 8px;
}



.form_ek {
    width: 20em;
}

.textarea_ek {
    width: 20em;
    height: 10em;
}

.absenden_ek {
    background-color: #4879A3;
    width: 10em;
    padding: 0.3em;
    font-size: 1rem;
}

.absenden_ek:focus {
    background-color: #4879A3;
    width: 10em;
    padding: 0.5em;
    font-size: 1rem;
    border: none;
    text-align: center;
}

    a img {
      border: 0;
    }

    #bilder {
      max-width: 1200px;
      margin: auto;
      padding-bottom: 20px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

    #bilder img {
      padding: 15px;
      box-shadow: 1px 0px 4px gray;
      margin: 15px;
      background-color: white;
      border-radius: 2px;
      object-fit: cover;
    }
    
    .tabelle_beschriftung {
        font-weight: normal;
    }

    .blog_link {
        color: #000;
    }
                                                                /********** ENDE EINZELFORMULAR ***********/
                                                                
                                                                /*********** START TABLET ***********/   
@media only screen and (min-width: 600px) {

.container {
    grid-area: container;
}

.navigation {
    grid-area: navigation;
}

.ueberschrift {
    grid-area: ueberschrift;
}

.artikel {
    grid-area: artikel;
}

.fussleiste {
    grid-area: fussleiste;
}

.hintergrund {
    background-color: rgba(255, 255, 255, 0.7);
    width: 90%;
    margin: auto;
    border-radius: 8px;
    box-shadow: 3px 3px 3px #808080;
}

.hintergrund2 {
    background-color: rgba(255, 255, 255, 0.9);
    width: 90%;
    margin: auto;
    border-radius: 8px;
    box-shadow: 3px 3px 3px #808080;
}

.container {
    display: grid;
    grid-template-areas:
    "ueberschrift ueberschrift ueberschrift"
    "navigation artikel artikel"
    "fussleiste fussleiste fussleiste"
    ;
    width: 90%;
    margin: 1em auto;
}

.startseite {
    background-image: url(Gestaltung/hintergrund_pc.JPG);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #ECE9D1;
    color: #000;
}

.vcwseite {
    background-image: url(Gestaltung/hintergrund_vcw.JPG);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #453C32;
    color: #000;
    font-family: Arial, sans-serif;
    font-size: 1rem;
}

.vorstandsseite {
    background-image: url(Gestaltung/hintergrund_vorstand.JPG);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #A5A198;
    color: #000;
    font-family: Arial, sans-serif;
    font-size: 1rem;    
}

.veranstaltungsseite {
    background-image: url(Gestaltung/veranstaltungen_hintergrund.JPG);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #A5A198;
    color: #000;
    font-family: Arial, sans-serif;
    font-size: 1rem;
}

.kontaktseite {
    background-image: url(Gestaltung/hintergrund_kontakt.JPG);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #616060;
    color: #000;
    font-family: Arial, sans-serif;
    font-size: 1rem;
}

.kontakt_vorstand {
    background-image: url(Gestaltung/hintergrund_einzelkontakt.JPG);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #A08E8D;
    color: #000;
    font-family: Arial, sans-serif;
    font-size: 1rem;
}

.bildergalerie {
    background-image: url(Gestaltung/bilder_hintergrund.JPG);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #97A067;
    color: #000;
    font-family: Arial, sans-serif;
    font-size: 1rem;
}

.videogalerie {
    background-image: url(Gestaltung/video_hintergrund.JPG);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #97A067;
    color: #000;
    font-family: Arial, sans-serif;
    font-size: 1rem;    
}

.gb {
    background-image: url(Gestaltung/hintergrund_gb.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #97A067;
    color: #000;
    font-family: Arial, sans-serif;
    font-size: 1rem;     
}

.blog {
    background-image: url(Gestaltung/blog_hintergrund.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #97A067;
    color: #000;
    font-family: Arial, sans-serif;
    font-size: 1rem;     
}

.ueberschrift_galerie {
    text-shadow: 5px 5px 5px #808080;
}

.trennlinie {
    display: block;
    width: 40px;
    margin: 0.4em auto;
    height: 5px;
    background-color: #000;
}

.blau {
    font-family: "Romanesco", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 2rem;
    color: #8080FF;
}

.hellrot {
    font-family: "Romanesco", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 2rem;
    color: #FF0080;
} 

.gruen {
    font-family: "Romanesco", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 2rem;
    color: #58B000;    
}

.rot {
    font-family: "Romanesco", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 2rem;
    color: #FF0F0F;    
}

h1 {
    color: #000;
}

.ueberschrift_galerie {
    margin: 1em;
}

.logo {
    display: none;
}

.navigation a.aktiv {
    background-color: #3F89E7;
}

.navigation li {
    margin-bottom: 3px;    
}

.navigation {
    width: 8em;
    border-right: 3px solid #000;
}

.navigation a {
    color: #000;
    background-color: #EFEFEF;
    font-size: 0.8rem;
    width: 9em;
    display: block;
    font-weight: bold;
    text-align: center;
    padding: 0.5em;
    border-radius: 8px;
    box-shadow: 3px 3px 3px #808080;
}

main {
    margin-left: 2em;
}

/****************** START BILDER ******************/

figure {
    background-color: #FFFFFF;
    border: 1px solid #000;
    padding: 0.2em;
    border-radius: 8px;
}

figcaption {
    text-align: center;
    border-top: 1px solid #000;
}

.einzelbild {
    margin-bottom: 1em;
}

.bilddesign {
    border-radius: 50%;
    width: 295px;
    height: 295px;
    box-shadow: 3px 3px 3px #808080;
}

/****************** ENDE BILDER ******************/

.fussleiste {
    text-align: center;
    padding: 0.5em;
}

.fussleiste a {
    color: #000;
}

form {
    background-color: #4895A3;
    width: 40em;
    padding: 1em;
    border-radius: 8px;
    box-shadow: 3px 3px 3px #808080;
}

label, input, textarea {
    display: block; /* Stellt sicher, dass jedes Element in einer neuen Zeile angezeigt wird */
    margin: 0 auto; /* Zentriert das Element horizontal */
    text-align: center; /* Zentriert den Text innerhalb des Labels */
}

input {
    width: 20em;
}

input:focus, textarea:focus {
    background-color: lightblue;
    text-align: left;
    padding-left: 0.1em;
}

.absenden {
    background-color: #4879A3;
    width: 20em;
    padding: 0.5em;
    font-size: 1rem;


}

.absenden:focus {
    background-color: #4879A3;
    width: 20em;
    padding: 0.5em;
    font-size: 1rem;
    border: none;
    text-align: center;
}

.meldung {
    color: #FF0000;
    font-weight: bolder;
}

.meldung_schwarz {
    color: #000;
}

/********** START FORMULAR **********/

form {
    background-color: #4895A3;
    width: 20em;
    padding: 1em;
    border-radius: 8px;
    box-shadow: 3px 3px 3px #808080;
}

label, input, textarea {
    display: block; /* Stellt sicher, dass jedes Element in einer neuen Zeile angezeigt wird */
    margin: 0 auto; /* Zentriert das Element horizontal */
    text-align: center; /* Zentriert den Text innerhalb des Labels */
}

input {
    width: 10em;
}

input:focus, textarea:focus {
    background-color: lightblue;
    text-align: left;
    padding-left: 0.1em;
}

textarea {
    width: 20em;
    height: 7em;
}

.absenden {
    background-color: #4879A3;
    width: 10em;
    padding: 0.5em;
    font-size: 1rem;


}

.absenden:focus {
    background-color: #4879A3;
    width: 10em;
    padding: 0.5em;
    font-size: 1rem;
    border: none;
    text-align: center;
}

.meldung {
    color: #FF0000;
    font-weight: bolder;
}

.meldung_schwarz {
    color: #000;
}

/********** ENDE FORMULAR ***********/

/********** START EINZELFORMULAR ***********/
.abstand_ek {
    margin-bottom: 1em;
}

.bilddesign_ek {
    width: 150px;
    height: auto;
    border-radius: 100%;
    float: left;
    padding: 0.3em;
}

.text_ek {
    border: 1px solid #000;
    padding: 0.3em;
    border-radius: 8px;
}



.form_ek {
    width: 20em;
}

.textarea_ek {
    width: 20em;
    height: 10em;
}

.absenden_ek {
    background-color: #4879A3;
    width: 10em;
    padding: 0.3em;
    font-size: 1rem;
}

.absenden_ek:focus {
    background-color: #4879A3;
    width: 10em;
    padding: 0.5em;
    font-size: 1rem;
    border: none;
    text-align: center;
}
/********** ENDE EINZELFORMULAR ***********/


    
footer {
    color: #000;
}

}                                    

                                                                        /*********** ENDE TABLET ***********/



                                                                        /*********** START PC ***********/    

@media only screen and (min-width: 768px) {

.hintergrund {
    background-color: rgba(255, 255, 255, 0.7);
    width: 70%;
    margin: auto;
}

.container {
    grid-area: container;
}

.navigation {
    grid-area: navigation;
}

.ueberschrift {
    grid-area: ueberschrift;
}

.artikel {
    grid-area: artikel;
}

.fussleiste {
    grid-area: fussleiste;
}

.container {
    display: grid;
    grid-template-areas:
    "ueberschrift ueberschrift ueberschrift"
    "navigation artikel artikel"
    "fussleiste fussleiste fussleiste"
    ;
}

.startseite {
    background-image: url(Gestaltung/hintergrund_pc.JPG);
    background-repeat: no-repeat;
}

.vcwseite {
    background-image: url(Gestaltung/hintergrund_vcw.JPG);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #453C32;
    color: #000;
    font-family: Arial, sans-serif;
    font-size: 1rem;
}

.vorstandsseite {
    background-image: url(Gestaltung/hintergrund_vorstand.JPG);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #A5A198;
    color: #000;
    font-family: Arial, sans-serif;
    font-size: 1rem;
}

.veranstaltungsseite {
    background-image: url(Gestaltung/veranstaltungen_hintergrund.JPG);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #A5A198;
    color: #000;
    font-family: Arial, sans-serif;
    font-size: 1rem;
}

.kontaktseite {
    background-image: url(Gestaltung/hintergrund_kontakt.JPG);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #616060;
    color: #000;
    font-family: Arial, sans-serif;
    font-size: 1rem;    
}

.kontakt_vorstand {
    background-image: url(Gestaltung/hintergrund_einzelkontakt.JPG);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #A08E8D;
    color: #000;
    font-family: Arial, sans-serif;
    font-size: 1rem;    
}


.container {
    margin-top: 3em;
    width: 70%;
    margin: 3em auto;
}
     
h1 {
    font-size: 3.8rem;
}

h2 {
    margin-bottom: 0.5em;
    font-size: 2rem;
}

.trennlinie {
    width: 50px;
    margin: 1em auto 2em;
    height: 5px;
    background-color: #000;
    display: block;
}

.navigation {
    width: 12em;
    border-right: 3px solid #000;
}

.navigation ul {
    display: block;
}

.navigation li {
    margin-bottom: 4px;
}

.navigation a {
    color: #000;
    background-color: #EFEFEF;
    width: 9em;
    display: block;
    font-weight: bold;
    text-align: center;
    padding: 0.5em;
    border-radius: 8px;
    box-shadow: 3px 3px 3px #808080;
    transition: 0.5s;
}

.navigation a:hover {
    color: #EFEFEF;
    background-color: #7B7E8A;
}

main {
    margin-left: 2em;
}

.text {
    font-size: 1.3rem;
}

/****************** START BILDER ******************/

figure {
    background-color: #FFFFFF;
    border: 1px solid #000;
    padding: 0.8em;
    border-radius: 8px;
}

figcaption {
    text-align: center;
    border-top: 1px solid #000;
}

.vorstand_bilder {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1em;
}

.bilddesign {
    border-radius: 50%;
    width: 250px;
    height: 250px;
    box-shadow: 3px 3px 3px #808080;
    transition: transform 0.3s ease;
}

.bilddesign:hover {
    transform: scale(1.05);
    box-shadow: 5px 5px 5px #808080;
}

/****************** ENDE BILDER ******************/

/****************** START KONTAKT ******************/

.form_allgemein {
    background-color: #4895A3;
    width: 40em;
    padding: 1em;
    border-radius: 8px;
    box-shadow: 3px 3px 3px #808080;
}

label, input, textarea {
    display: block; /* Stellt sicher, dass jedes Element in einer neuen Zeile angezeigt wird */
    margin: 0 auto; /* Zentriert das Element horizontal */
    text-align: center; /* Zentriert den Text innerhalb des Labels */
}

input {
    width: 20em;
}

input:focus, textarea:focus {
    background-color: lightblue;
    text-align: left; 
    padding-left: 0.1em;
}

.textarea_allgemein {
    width: 30em;
    height: 10em;
}

.absenden_allgemein {
    background-color: #4879A3;
    width: 20em;
    padding: 0.5em;
    font-size: 1rem;
    
    
}

.absenden_allgemein:focus {
    background-color: #4879A3;
    width: 20em;
    padding: 0.5em;
    font-size: 1rem;
    border: none;
    text-align: center;
}
                 
.meldung {
    color: #FF0000;
    font-weight: bolder;
}

.meldung_schwarz {
    color: #000;
}

/****************** ENDE KONTAKT ******************/

/****************** START EINZELKONTAKT ******************/

.abstand_ek {
    width: 20em;
}

.bilddesign_ek {
    width: 150px;
    height: auto;
    border-radius: 100%;
    float: left;
    padding: 0.3em;
}

.text_ek {
    border: 1px solid #000;
    padding: 0.3em;
    border-radius: 8px;
}

.kontakt_flex {
    display: flex;
    justify-content: space-between;
}

.form_ek {
    width: 20em;
}

.textarea_ek {
    width: 20em;
    height: 10em;    
}

.absenden_ek {
    background-color: #4879A3;
    width: 10em;
    padding: 0.3em;
    font-size: 1rem;    
}

.absenden_ek:focus {
    background-color: #4879A3;
    width: 10em;
    padding: 0.5em;
    font-size: 1rem;
    border: none;
    text-align: center;
}

/****************** START EINZELKONTAKT ******************/

}                           
 
/*********** ENDE PC ***********/