body {
    font-family: "Code Light", Arial, sans-serif;
    background-color: rgba(242, 242, 242, 1);
    color: rgba(64, 66, 71, 1);
    text-align: center;
    letter-spacing: 5px;
    font-size: 10px;
}

a {
    color: rgba(64, 66, 71, 1);
}

#container {
    position: relative;
    height: 66px;
    width: 660px;
    margin: auto;
    margin-top: 100px;
    left: 0;
    right: 0;
}

#game_section {
    border: 1px solid rgba(198, 199, 198, 1);
    width: 256px;
    height: 256px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

#game_canvas {
    image-rendering: optimizeSpeed;
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -o-crisp-edges;
    image-rendering: pixelated;
    -ms-interpolation-mode: nearest-neighbor;
}

#introduction_section {
    position: relative;
    left: 50%;
    width: 450px;
    transform: translateX(-50%);
}

#introduction_section h1 {
    width: 450px;
}

#introduction_section p {
    width: 400px;
    margin-left: 25px;
}