html {
  background-color: lightyellow;  
}

body {
    /*background-color: beige;*/
    /*background-image: url("bilder/hexagon-background_1280.png");*/
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1em;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 800px;
    padding: 2em 2em 4em;
}

h1, h2, h3, h4, h5, h6 {
    color: #222;
    font-weight: 400;
    line-height: 1.3;
    text-align: center;
}

h2 {
    margin-top: 1.3em;
}

a {
    color: #222;
}

b, strong {
    font-weight: 600;
}

p {
    /* background-color: beige;*/ /*Hintergrundfarbe wird vom body bestimmt*/
    text-align: center;
}

samp {
    display: none;
}

img {
    animation: colorize 0.5s cubic-bezier(0, 0, .78, .36) 1;
    background: transparent;
    border: 10px solid rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    display: block;
    margin: 1.3em auto;
    max-width: 95%;
}

/*aside definitionen */
    
#bild_rechts {
    display: grid;
  grid-template-columns: 1fr 15em; /*Bildet zwei Spalten, die 2. soll 20em Platz einnehmen, die erste den verbleibenden Platz = fr*/
}

@keyframes colorize {
    0% {
        -webkit-filter: grayscale(100%);
        filter: grayscale(100%);
    }
    100% {
        -webkit-filter: grayscale(0%);
        filter: grayscale(0%);
    }
}