body {
    margin: 0;
}

#page {
    width: 600px;
    height: 700px;
    
    position: absolute;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

#display {
    margin: 0 auto;
    width: 604px;
    height: 474px;
}

#board {
    position: absolute;
    left: 0px;
    top: 70px;
    width: 400px;
    height: 400px;
    clip: auto;
    overflow: hidden;
    border: 2px solid #404040;
}

#info_box {
    position: absolute;
    left:404px;
    top:70px;
    width: 200px;
    height: 404px;
    background-color: #168;
}

#black_name {
    height: 40px;
    background-color: #00BBFF;
    font-size: large;
}

#black_time {
    height: 20px;
    border: 2px solid #000;
}

#move_list {
    height: 240px;
    overflow: scroll;
    background-color: #D9FFFF;
}
#nav_bar {
    height: 20px;
    align-content: center;
}
#white_time {
    height: 20px;
    border: 2px solid #000;
}
#white_name {
    height: 40px;
    background-color: #00BBFF;
    font-size: large;
    color: white;
}
#game_list {
    position: absolute;
    left: 0px;
    top: 474px;
}

.square {
    position: absolute;
    height: 50px;
    width: 50px;
}

.white-square {
    background-color: #f0d9b5;
  color: #b58863;
}

.black-square {
    background-color: #b58863;
  color: #f0d9b5;
}

.game_button {
    width: 600px;
    text-align: left;
}
.move_line {
    display:block;
}
.move {
    display:inline-block;
    width: 80px;
}