html,
body {

    background-color: black;
    color: yellow;
    background-image: url("img/sterne.jpg");


}



h1 {

    font-size: 40px;
    color: red;
}

h2 {

    font-size: 25px;
    color: red;
}

#navibereich {

    min-height: 50px;
}

#bereichlogo {
    color: white;
    background-color: limegreen;
    display: block;
    padding: 0.5em;
    text-decoration: none;
    float: left;
    width: auto;

}

#steuerung {}

#steuerung a {
    display: block;
    height: 100%;
    width: 100%;
    padding: 0.5em;
    text-decoration: none;
    /* keine Unterstreichung */
    color: white;
    /* Schriftfarbe weiß */
    background-color: gray;
    /* Hintergrundfarbe grau */
}

#steuerung li {
    list-style: none;
    float: left;
}

#steuerung a:hover {
    color: black;
    background: orange;
}

.menue-button {
    display: none;
}


#kopfbereich {

    border-color: yellow;
    border-style: groove;
    border-width: medium;
}

#disney {

    text-align: right;
    max-height: 200px;
    max-widht: 200px;
}

#text1 {

    border-color: yellow;
    border-style: groove;
    border-width: medium;
}

.star {


    max-height: 200px;
    max-width: 150px;
    border-color: yellow;
    border-style: groove;
    border-width: medium;
    margin: 10px;

}

#bilder {

    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

#text2 {

    border-color: yellow;
    border-style: groove;
    border-width: medium;
}

#text3 {

    border-color: yellow;
    border-style: groove;
    border-width: medium;
}

#logo {
    display: flex;
    flex-direction: row;
    justify-content: center;


}

#starwars {

    max-width: 400px;
    margin: 20px;
}

.schauspieler {

    display: flex;
    flex-direction: column;
    max-width: 200px;
    margin: 10px;
}

hr {

    border-color: yellow;
    margin: 10px;
}

/* Für Handy Ansicht */
@media screen and (max-width: 1050px) {
    #bilder {
        flex-direction: column-reverse;
    }

    .star {
        max-height: 100%;
    }

    .menue-button {
        display: block;
    }

    .menue-button {
        background-color: darkblue;
        display: block;
        position: absolute;
        right: 8px;
        top: 8px;
        padding: 15px;
        color: white;
        cursor: pointer;
        text-decoration: none;
    }

    #bereichlogo {
        width: 100%;
        padding: 15px;
    }

    #bereichlogo a {

        font-size: 18px;
    }

    #steuerung {
        float: left;
        width: 100%;
        display: none;
    }

    #steuerung li {
        width: 100%;
        border-bottom: 2px solid silver;
    }

    #steuerung a {
        padding: 1em;
    }

    .menue-button:hover {
        color: black;
        background: orange;
    }

    #nav-menue:target #steuerung {
        display: block;
    }

    #nav-menue:target .menue-button-beschr-open {
        display: none;
    }

    #starwars {
        max-width: 100%;
        margin: 20px;
    }

    .schauspieler {

        display: flex;
        flex-direction: column;
        max-width: 100%;
        margin: 10px;
    }

}