/* Grundlayout des Body */ 
body {
    background-size: cover;
    background-image: url("/Fotos/Hintergrund_Homepage.jpg");
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    overflow-x: hidden; /* Verhindert horizontales Scrollen */
}

/* Begrüßung */
#Begrüßung {
    font-size: 50px;
    text-align: center;
    color: orange;
    margin-top: 50px;
}

/* Hauptinhalt */
.Vorstellung {
    display: flex;
    flex: 1;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-left: 7.5%;
    margin-right: 7.5%;
    margin-bottom: 35px;
}

#Nicolas_Luger_Homepage {
    width: 25%;
    height: auto;
    border-radius: 15%;
    margin-left: 7.5%;
}

#Vorstellung {
    color: white;
    flex: 1;
    flex-wrap: wrap;
    font-size: 30px;
    max-width: 85.5%;
    margin-left: 7.5%;
    margin-right: 7.5%;
    margin-bottom: 20px; /* genug Platz zur fixierten Leiste unten */
    margin-top: 30px;
    background-color: rgba(0, 0, 20, 0.6);
    text-align: justify;
    padding: 20px;
    border-radius: 15px;
    
}

#Vorstellung a {
    color: yellow;
}

.Vorstellung{
    margin-bottom:15px;
}

.Vorstellung_unten{
    margin-top: 0px;
    padding-top: 0px;
    margin-bottom: 20px; /* genug Platz zur fixierten Leiste unten */
}

/* ------------------------------------- */
/* MOBILE & TABLET-Ansichten            */
/* ------------------------------------- */
@media (max-width: 900px) {
    
    body{
        position: relative;
    }
    
    /* Elemente im Hauptbereich untereinander statt nebeneinander */
    .Vorstellung {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom:15px;
    }
    
    #Vorstellung{
    margin-bottom:20px;
    margin-top: 20px;
    }
    
    #Nicolas_Luger_Homepage {
        width: 80%;
        margin: 0 auto;
    }
}