    .body {
        height: 100vh;
        height: calc(var(--vh, 1vh) * 100);
        margin: 0 auto;
    }

    canvas {
        width: 100%;
        height: auto;
        border-style: solid;
        border-width: 0px;
        border-color: black;
    }

    #dragme {
        margin: 0 auto;
        position: relative;
        width: 200px;
        height: 300px;
        top: 30%;
        cursor: move;
    }

    button,
    input[type=submit],
    input[type=button] {
        padding: 10px 20px;
        font-size: 1em;
        cursor: pointer;
        border-radius: 15px;
        color: #000000;
        background-color: #ffc72c;
        border: 1px solid #b09f6d;
    }

    input[type="file"] {
        display: none;
        border: 0;
    }

    input[type="file"]::-webkit-file-upload-button {
        display: none;
        background: #ffc72c;
        border: 0;
        padding: 12px 25px;
        cursor: pointer;
        color: #000;
        text-transform: uppercase;
    }

    input[type="file"]::-ms-browse {
        font: 300 14px 'Roboto', sans-serif;
        background: #009688;
        border: 0;
        padding: 12px 25px;
        cursor: pointer;
        color: #fff;
        text-transform: uppercase;
    }

    #marker {
        background-color: #0F0;
        position: absolute;
        left: 0px;
        top: 0px;
        width: 5px;
        height: 5px;
        border-radius: 5px;
    }

    #marker2 {
        background-color: #0F0;
        position: absolute;
        left: 0px;
        top: 0px;
        width: 5px;
        height: 5px;
        border-radius: 5px;
    }

    #container {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        opacity: 1;
        overflow: hidden;
    }

    #fgDiv {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background-color: #F00;
        opacity: 0;
    }

    .results {
        width: 300px;
        height: 300px;
        position: relative;
    }

    .results img {
        width: 300px;
        height: 300px;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
    }

    .section {
        background-image: url("/images/bg.png");
        background-position: top;
        background-size: cover;
        background-repeat: no-repeat;
        height: 100%;
    }


    #wrapper {
        background-image: url("/images/preload.png");
        background-position: top;
        background-size: cover;
        background-repeat: no-repeat;
        height: 100%;
    }
