/* import driveby font */
@font-face {
    font-family: 'driveby';
    src: url(../fonts/driveby-font/Driveby-PG0g.ttf);
}


html, body {
    margin: 0;
    padding: 0;
    background-color: rgb(192, 216, 223);
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    font-family: driveby;
}


div#main {
    width: 100%;
    height: 70%;
    min-height: 550px;
    max-height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    /* background-color: red; */
}

#robber {
    width: 200px;
    position: absolute;
}

#canvas {
    background-color: rgb(27, 69, 82);
    position: relative;
    cursor: none;
}

#score {
    font-size: 20px;
    padding: 20px 0;
}