body {
    background-color: var(--color-bg-primary);
    color: var(--white);
    font-family: var(--font-primary);
    font-family: var(--font-secondary);
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    
}

.container {
    width: 100%;
    margin: auto;
}

h1 h2 h3 h4 h5 h6 {
    font-family: var(--font-secondary);

}

#main-picture {
    min-height: 250px;
    min-width: 100%;
    padding: 0;
    background: url("../img/camera.jpg") no-repeat center center/cover;
}

#main-picture h3 {
    position: relative;
    max-width: 50%;
    color: var(--color-text-primary);
    text-align: start;
    font-size: 2.5rem;
    padding: 100px 200px 0 0;
    z-index: 1;
}

#main-picture h6 {
    position: relative;
    color: var(--color-text-secondary);
    font-size: 15px;
    padding: 0;
    margin: 0;
    z-index: 1;
}

#picture_text {
    color: var(--color-success);
    text-shadow: var(--color-text-secondary) 0.5px 0.5px 0.5px;
}


#box {
    padding: 0 0 50px 0;
    background-color: var(--color-bg-secondary);

}

#box h4 {
    text-align: center;
    font-size: 1.5rem;
    margin: auto;
    padding: 20px 10px 10px 10px;
    font-style: oblique;
    color: var(--color-text-primary);

}

#about-me {
    width: 60%;
    margin: auto;
    padding-top: 20px;
    color: lightgray;
    font-size: 1.1rem;

}

#motto {
    font-style: italic;
    font-weight: bold;
    color: var(--color-success);
    justify-content: center;
    padding: 0 0 0 50px;
    font-size: 1.1rem;
}


.line {
    background-color: var(--color-success);
    height: 35px;
    width: 35px;
    margin: auto;
    vertical-align: middle;

}

/* Fotos Bottom */
#gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    float: center;
}

#gallery h4 {
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
    margin: auto;
    padding: 20px 10px 10px 10px;
    color: var(--color-text-primary);
}

.gallery-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;


}


#picture1 {
    background-image: url("../img/background.webp");
    background-size: cover;
    margin-right: 15px;
    margin-bottom: 0;
    min-width: 200px;
    min-height: 250px;
    transition: transform .5s;
}

#picture2 {
    background-image: url("../img/basel.jpg");
    background-size: cover;
    margin-right: 15px;
    margin-bottom: 0;
    min-width: 200px;
    min-height: 250px;
    transition: transform .5s;
}

#picture3 {
    background-image: url("../img/portrait_pic3.jpg");
    background-size: cover;
    margin-right: 15px;
    margin-bottom: 0;
    min-width: 200px;
    min-height: 250px;
    transition: transform .5s;
}

#picture4 {
    background-image: url("../img/japan_schrein.jpg");
    background-size: cover;
    margin-bottom: 0;
    min-width: 200px;
    min-height: 250px;
    transition: transform .5s;
}

.gallery-grid p {
    min-width: 100%;
    height: 200px;
    display: flex;
    align-items: end;
    justify-content: center;
    color: lightgray;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.5);
    padding: 0;
    border-radius: 5px;
}

.beschrieb {
    font-size: 1rem;
    font-weight: bold;
    background: var(--color-bg-secondary);
    background: rgba(0, 0, 0, 0.5);
    min-width: 100%;
    bottom: 0;

}

#picture1:hover,
#picture2:hover,
#picture3:hover,
#picture4:hover {
    transform: scale(2);
    box-shadow: 0 4px 8px 0 var(--color-success), 0 6px 20px 0 var(--color-success);
    text-align: center;
}