* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: url(bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;
    color: white;
}

#game-container {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

#bear {
    width: 300px;
    height: 200px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-image: url('bear.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 0 50px limegreen);
}

.apple {
    width: 60px;
    height: 60px;
    position: absolute;
    background-image: url('honeycrisp.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 0 20px yellow);
    cursor: default;
}

#message {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 3rem;
    text-align: center;
    text-shadow: 0 0 10px blue;
}