#game {
    width: 800px;
    height: 500px;
    font-family: Arial;
    background: #000;
    padding: 50px;
	margin:0 auto;
}

#about {
    width: 800px;
    font-family: Arial;
    background: #000;
    padding: 50px;
	margin:0 auto;
}

#game-table {
    display: table;
    width: 800px;
    height: 500px;
}

#game .game-row {
    display: table-row;
}

#game .game-cell {
    display: table-cell;
    width: 100px;
    height: 100px;
    background: #000;
    color: white;
    vertical-align: middle;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-size: 75px;
}

.beat_the_chimp {
    color: white;
    font-size: 60px;
    text-align: center;
    font-weight: bold;
    margin-top: 60px;
}

.start {
    margin-top: 70px !important;
}

.start, .leaderboards, .about {
    background: white;
    color: black;
    width: 300px;
    font-size: 30px;
    text-align: center;
    padding: 10px;
    margin: 15px auto;
    font-weight: bold;
    cursor: pointer;
}

#game .game-end {
    color: white;
    text-align: center;
}

#game .end-left {
    float: left;
    width: 45%;
}

#game .end-right {
    float: right;
    width: 45%;
}

#game .result-title {
    font-size: 75px;
    font-weight: bold;
    margin-top: 40px;
}

#game .result-text {
    font-size: 25px;
    font-weight: bold;
    margin-top: 20px;
}

#game .time-wrapper {
    margin-top: 40px
}

#game .your-best, #game .chimps-best, #game .your-time {
    font-size: 20px;;
}

#game .game-end .leaderboards {
    margin-top: 50px;
}

#game .end-right .try-again {
    margin-top: 70px;
    border: 12px solid white;
    width: 300px;
    height: 300px;
    font-size: 50px;
    font-weight: bold;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    cursor: pointer;
}

#game .end-right .try-again div {
    margin-top: 90px
}

#game .hidden-number {
    background: white;
    cursor: pointer;
    color: black;
}


