/* Center the top text */
.headline {
    text-align: center;
}

/* This container includes our table and canvas */
.center-container {
    /* Sets the width of container */
    width: 608px;
    /* Centers our container */
    margin: 0 auto;
    /* 50 px down from the top */
    margin-top: 50px;
}

table {
    border-collapse: collapse;
    border-style: hidden;
}

td {
    /* Changes curser to finger pointer */
    cursor: pointer;
    /* Set our table border style */
    border: 4px solid rgba(32, 79, 122, 0.8);
    /* Remove default padding */
    padding: 0px;
    width: 200px;
    height: 200px;
}

canvas {
    /* Set position of canvas to top left of container */
    position: absolute;
    /* Place our canvas over the top of table */
    z-index: 10;
    /* Make canvas invisible */
    pointer-events: none;  
}
