@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;700&display=swap');

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

body {
    background: #e8e4d8;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    font-family: 'Caveat', cursive;
}

canvas#game {
    border: 2px solid #3a3a3a;
    box-shadow: 4px 4px 0px rgba(0,0,0,0.15);
    cursor: pointer;
    image-rendering: crisp-edges;
}