body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: white;    
	font-size: calc(12px + (36 - 16) * ((100vw - 320px) / (1600 - 320)));    
}

.background {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, yellow 0%, blue 15%, blue 15%, blue 85%, blue 85%, yellow 100%);
}

.contentblock {
    width: 80%;
    box-sizing: border-box;
    position: absolute;
    left: 10%;
    right: 10%;
}

li {margin: 4px; }


.piccontainer {
    display: flex;
    flex-wrap: wrap;
}

/* Stil für das Bild */
.picimage {
    margin-right: 30px;
}

a { color: white; text-decoration: none;}
a:focus   { color: white;}
a:hover   { color: yellow;  text-decoration:underline;}
a:active  { color:white; }

/* Stil für den Text */
.pictext {
    flex: 1; /* Der Text nimmt den verfügbaren Platz ein */
}

.image img {
    width: 100%;
    height: auto;
}
