.schattentitel {
    color: #008000;
    text-decoration: underline;
    text-align: center;

    font-size: 20pt;
    font-family: sans-serif;
    text-shadow: 11px 15px 18px #f3bf5f, -11px -8px 18px #3cf3d4;
}

.schattenplatz {
    color: blue;
    text-align: center;

    font-size: 15pt;
    font-family: sans-serif;
    text-shadow: 11px 15px 15px #3cf3d4, -11px -8px 15px #f3bf5f;

}

/* Ausgabe wie mit einer Sofortbildkamera. */
body {
    font-family: sans-serif;
    padding: 1em;
}

/* mittig ausgeben */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Größe der Box bestimmen*/
figure {
    width: 360px;
    height: auto;
    float: right;

    padding: 1em 1em 3em 1em;
    border: 1px solid silver;
    margin: 0 2em 2em 2em;
    box-shadow: 10px 0px 25px #555;
}

/* Größe des Bildes in der Box */
figure img {
    width: 350px;
    height: auto;
}

/* Text in container mittig setzen */
figcaption {
    font-family: 'Rock Salt', cursive;
    color: #056e0a;
    padding-top: 1em;
    line-height: 1.2em;
    text-align: center;
}