:root{
    --color-foto: rgb(180, 180, 180);
    --color-back: rgb(255, 255, 255);
    --color-a: rgb(255, 183, 3);
    --color-b: rgb(251, 133, 0);
    --color-c: rgb(142, 202, 230);
    --color-d: rgb(33, 158, 188);
    --color-e: rgb(2, 48, 71);
}

*{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body, iframe { height: 100%; }

html{
    font-family: 'Open Sans', sans-serif;;
    color: var(--color-e);
    font-size: 14px;
    word-spacing: 2px;
    line-height: 28px;
}
body{
    height: 100vh;
    background-color: var(--color-back);
}

.wrapper{
    position: fixed;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow-y: scroll;
    background-image: url("kopf.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}