/*
Name: Joshua Brockschmidt
Date: 04.16.18
Section: CSE 154 AB

Stylesheet for index.html.
*/

html, body {
    background-color: #000;
    font-family: "Courier New", monospace;
    color: #00f;
}

body {
    display: flex;
    justify-content: center;
}

main {
    width: 800px;
}

h1 {
    font-size: 50px;
    text-transform : uppercase;
    text-align: center;
}

#game {
    background-color: #fff;
    width: 800px;
    height: 600px;
    border: 5px solid #00f;
}
