html {
    height: 100%;
}
/* We don't want extra margin around header ot footer *
 * and it might be nice to have same background and   *
 * text color for most parts of the page.             */
body {
    height: 100%;
    background-color: #050505;
    color: #A0A0A0;
    margin: 0px;
}

/* Top and bottom pannels should look same */
header, footer {
    background-color: #101010;
    color: white;
    clear: both;
    text-align: center;
    padding: 5px;
    position: relative;
}

/* Other elements should have few pixels around them */
main {
    padding: 0px;
    margin: 2px;
    height: auto;
    min-height: 100%;
}

/* Boarders around divs and images*/
div {
    padding: 1px;
    border: 1px solid #909090;
    margin: 1px;
}

div.row {
    display: flex;
    flex-direction: row;
    flex-wrap: no-wrap;
}

div.cell {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

/* Links at bottom of div */
p.desc {
    flex-grow: 1;
}

img {
    max-width: 250px;
    height: 150px;
}

canvas {
    margin: 0px;
    padding: 0px;
}

.html5game {
    margin: 0;
    padding: 0;
}

.instructions {
  text-align: center;
}
