body {
    background-color: white;
    font-family: garamond;
    
    font-weight: normal;


}

p {

    font-weight: normal;
}

.Italic{
    font-style:italic;
}

a {
    color: black;
    text-decoration: none;
}

a:hover {
    color: blue;
}

#header {
    top: 2.5%;
    left: 2.5%;
    width: 95%;
    background: rgba(255, 255, 255, 0);
    position: fixed;
    z-index: 99;
}

img {
    height: 90%;
}

#menu {
    width: 50%;
    text-align: right;
    float: right;
}

.grid {
    padding-top: 50px;
}



.welcome3 {
    position: fixed;
    width: 20vw;
    top: 40vh;
    left: 40vw;
    right: 30vw;
    
    
}


.welcome {
    /* Wechsel von fixed zu fixed (bleibt beim Scrollen stehen) aber zentriert */
    position: fixed;
    
    /* Flexbox für perfekte Zentrierung des Inhalts */
    display: flex;
    justify-content: center; /* Horizontal zentrieren */
    align-items: center;     /* Vertikal zentrieren */
    
    /* Positionierung: Exakt in die Mitte des Screens */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Korrektur, damit es wirklich mittig ist */
    
    /* Größe des Rahmens: Optional, da sich der Rahmen dem Bild anpasst. 
       Wir geben ihm aber maximal die Größe von 1/3 Screen vor, falls das Bild fehlt */
    max-width: 33vw;
    max-height: 33vh;
    
    /* Reset von alten Werten */
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
}

.welcome2 {
    /* Das Bild darf maximal 1/3 der Breite und 1/3 der Höhe einnehmen */
    max-width: 33vw;
    max-height: 33vh;
    
    /* Wichtig: Behält die Proportionen bei */
    width: auto;
    height: auto;
    
    /* Entfernt alte fixe Breiten */
    display: block;
}



.grid-item {
    position: relative;
    float: left;
    padding: 10px;
    font-size: 50px;
    margin: 10px;
}

.grid-item--hochformat {
    height: 175px;
    width: 135px;
}

.grid-item--hochformat2 {
    height: 190px;
    width: 130px;
}

.grid-item--querformat2 {
    height: 125px;
    width: 145px;
}

.grid-item--querformat3 {
    height: 100px;
    width: 175px;
}

.grid-item--querformat4 {
    height: 100px;
    width: 135px;
}

.grid-item--querformat {
    height: 130px;
    width: 155px;
}

.grid-item--quadrat {
    height: 150px;
    width: 150px;
}

.grid-item--querformatklein {
    height: 50px;
    width: 70px;
}

.grid-item--hochformatklein {
    height: 100px;
    width: 80px;
}

#filler {
    padding: 50px;
    width: calc(100vw - 0px);
    z-index: 10000;
    height: calc(100vh - 0px);
    top: 0px;
    left: 0px;
    position: fixed;
    background-color: rgba(255, 255, 255, 0.75);
    background-image: url();
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    background-origin: content-box;
    display: none;


}












.bildinfo {
    word-wrap: break-word;
    font-size: 8px;

    color: rgb(0, 0, 0);

    bottom: 40px;
    left: 20px;
    right: 20px;
    background: rgba(0, 185, 43, 0);
}

.grid-item img {
    cursor: pointer
}

.hide {
    visibility: hide;
    opacity: 0;
    /*transition: visibility 0s, opacity 0.5s linear;*/
}

.show {
    visibility: visible;
    opacity: 1;
}


.links {
    color: blue;
}

iframe{
    width: 100%;
    height: 100%;
  
}

