@media not print {
    body { background-color: blanchedalmond;}
    main { display: flex;
	   flex-flow: row wrap; }

    article { width: 30em;
	      border: solid;
	      margin: 1px;
	      padding: 1px;}

    article * { display: none; }

    article:hover *,
    article:focus *,
    article:target *  { display: inline-block; }

    article:hover h2,
    article:focus h2,
    article:target h2 { display: block; }

    article div h2,
    article div h3 { text-align: center;
		     margin: auto;
		     padding: 0 0 .2em 0;}

    article div:first-child,
    article div:first-child h2,
    article div:first-child h2 + h3 { display: block; }

    article div:first-child h2 + p,
    article div:first-child h2 + p *,
    article div:first-child h2 + h3 + p,
    article div:first-child h2 + h3 + p * { display: inline-block; }

    .warning:not(:hover):not(:focus):not(:target)::before {
	content: "⚠️ "; float: left; font-size: xx-large; }
    .information:not(:hover):not(:focus):not(:target)::before {
	content: "💡 " ;  float: left; font-size: xx-large; }
    .news:not(:hover):not(:focus):not(:target)::before {
	content: "🌈 " ;  float: left; font-size: xx-large; }
    .problem:not(:hover):not(:focus):not(:target)::before {
	content: "🤔 " ;  float: left; font-size: xx-large;}
    .workaround:not(:hover):not(:focus):not(:target)::before {
	content: "🩹 " ;  float: left; font-size: xx-large;}

    .workaround h2,
    .workaround h3 { background-color: greenyellow;}
    .warning h2,
    .warning h3 { background-color: orangered;}
    .information h2,
    .information h3 { background-color: darkorchid;}
    .news h2,
    .news h3 { background-color: lightseagreen;}
    .problem h2,
    .problem h3 { background-color: grey;}

    del { display: none; }

}



/* div:lang(de)::before { content: "🇩🇪"; float: right; font-size: x-small; display: block} */
/* div:lang(fr)::before { content: "🇨🇵"; float: right; font-size: x-small;display: block} */
/* div:lang(en)::before { content: "🇬🇧"; float: right; font-size: x-small;display: block} */
