html,
body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    cursor: url(gamecursor.png) 64 64, auto;
}

* {
    box-sizing: border-box;
}

#mygamearea {
    height: 100vh;
    width: 100vw;
    background-color: rgb(44, 33, 33);
    background: url(gamebackground.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

#game {
    width: 100%;
    height: 100%;
    border: 20px solid white;
}

.duck {
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: blue;
    border-radius: 50%;
}

.left {
    background: url(duckimageleft.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.right {
    background: url(duckimageright.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

#gameUI {
    color: white;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    font-family: 'Courier New', Courier, monospace;
    font-size: 40px;
    margin: 20px 20px;
}