/* Reset default browser spacing */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

/* Fullscreen background map */
body {
    background-image: url("../images/scotland-yard-map.png");
    background-size: cover;        /* makes image fill the screen */
    background-position: center;   /* keeps it centered */
    background-repeat: no-repeat;  /* prevents repeating */
    background-attachment: fixed;  /* keeps map fixed when scrolling */
}