        :root {
            --color_orange-main: #F58300;
            --color_orange-medium: #FFB443;
            --color_orange-light: #FFF1DB;
            --color_orange-superlight: #FFF9F0;
            --color_orange-white: #FEFCF8;
            --color_gray-dark: #ACACAC;
            --color_gray-medium: #D6D6D6;
            --color_gray-light: #E5E5E5;
            --color_gray-superlight: #ECECEC;
            --borderradius_small: 5px;
            --borderradius_medium: 10px;
            --borderradius_large: 15px;
            --shadow_tight: 0px 1px 2px 1px rgba(0,0,0,0.3);
        } 
        
        html {
            font-size: 16px;
            font-family: Arial, Helvetica, sans-serif;
        }

        body {
            margin: 0px;
            padding: 0px;
            display: flex;
            flex-direction: column;
            background-color: var(--color_gray-superlight);

        }


        p {
            font-size: 1.6em;
        }

        h1 {
            font-size: 1.6em;
        }

        h2 {
            font-size: 1.6em;
        }

        h3 {
            font-size: 1.6em;
        }

        input {
            background-color: var(--color_gray-superlight);
            border-width: 0px;
            border-radius: var(--borderradius_medium);
            min-height: 30px;
            padding: 10px;
        }

        input:hover {
            background-color: var(--color_orange-white);
            box-shadow: var(--shadow_tight);
            -webkit-box-shadow: var(--shadow_tight); 
        }

        button {
            background-color: var(--color_gray-superlight);
            border-width: 0px;
            border-radius: var(--borderradius_medium);
            min-height: 30px;
            padding: 10px;
        }

        .divider {
            height: 2px;
            background-color: var(--color_gray-dark);
        }

        .column {
            display: flex;
            flex-direction: column;
        }

        .column.center {
            align-items: center;        
        }

        .row {
            display: flex;
            flex-direction: row;
        }
        
        .row.center {
            align-items: center;
        }

        #search {
            margin: 15px;
        }

        #title {
            height: 20px;

        }

        #searchfield {
            height: 80px;
            display: flex;
            box-sizing: border-box;

        }


        #searchinput {
            width: 100%;
            height: 100%;
            font-size: 2em;
            display: flex;
            align-items: center;
            box-sizing: border-box;
        }

        #tags {
            height: 50px;
            width: 100%;
            display: flex;
            align-items: flex-start;
        }

        .tag {
            background-color: var(--color_gray-medium);
            -webkit-box-shadow: var(--shadow_tight); 
            box-shadow: var(--shadow_tight);
            border-radius: var(--borderradius_small);
            margin: 5px;
            height: auto;
            padding: 5px;
        }

        #results {
            width: 100%;
            height: auto;
            flex-grow: 1;
        }

        #results .result .tags {
            display: flex;
            flex-direction: row;
        }

        .result {
            padding-right: 50px;
            margin: 5px 0px 5px 0px;
            border-radius: var(--borderradius_medium);
        }

        .result .container {
            border-radius: var(--borderradius_medium);
            padding: 0px 10px 0px 10px;
            justify-content: space-between;
        }

        .result:hover {
            background-color: var(--color_orange-light);
            box-shadow: var(--shadow_tight);
            -webkit-box-sizing: var(--shadow_tight);
        }

        .result:hover .container {
            background-color: var(--color_orange-white);
        }

        #snip {
            box-sizing: border-box;
            position: absolute;
            top: 105px;
            width: 100vw;
            padding: 0px 15px 15px 15px;
            height: calc(100vh - 115px);
            display: flex;
            flex-direction: column;
        }

        #controlpanel {
            min-height: 100px;
            background-color: var(--color_orange-white);
            padding: 40px;
            border-radius: var(--borderradius_medium);
            transform: translateY(10px);
            display: flex;
            flex-direction: row;
        }   

        #parameters {
            display: flex;
            flex-direction: column;
            width: calc(100% - 100px);
        }

        #parameters input {
            margin-bottom: 10px;
        }

        #controlpanel .buttons{
            display: flex;
            flex-direction: column;
            align-items: end;
            justify-content: space-between;
            flex-grow: 1;
        }

        #preview {
            background-color: var(--color_orange-light);
            height: 100%;
            padding: 40px;
            border-radius: var(--borderradius_medium);
        }

        #preview .code {
            background-color: #262626;
        }