/* Everything in the style tag is CSS, comments look like this*/

/* This is where we can set dimensions of the web page and remove any default margin and padding*/
html, body {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
}

/* This is where we can set the style of our map div using an id selector (#) */
#map {
    width: 100%;
    height: 100%;
}
