#round1, #round2, #round3, #round4, #round5 {
    float: left;
    width: 16%;
    display: block;
    position: relative;
}

.winner {
    float: left;
    width: 16%;
    display: block;
    position: relative;
    height: 100px;
    background: greenyellow;
    border: 5px solid greenyellow;
}

.winner p {
    font-size: larger;
    font-weight: bold;
    text-align: center;
}

.gamewrapper {
    display: block;
    position: relative;
    overflow: auto;
    width: 100%;
}

.game {
    display: block;
    position: relative;
    width: 50%;
    float: left;
}

.connector {
    display: block;
    position: relative;
    width: 48%;
    border-bottom: 1px solid black;
    float: left;
    top: 20px;
    height: 46px;
}

.player {
    display: block;
    border: 1px solid black;
    padding: 0 5px;
    height: 53px;
}

.result {
    color: blue;
    font-size: smaller;
    font-weight: bold;
}

.gameNumber {
    border: 1px solid black;
    color: white;
    display: block;
    width: 100%;
    position: relative;
    height: 20px;
}

.gameNumber span {
    width: 13%;
    background: black;
    display: block;
    height: 20px;
    position: relative;
    top: 50%;
    float: left;
}

.gameNumber div {
    color: red;
    font-size: smaller;
}

/* round 1 specials */
#round1 .gamewrapper.first {
    margin-top: 0;
}

#round1 .gamewrapper {
    margin-top: 26px;
}

#round1 .gameNumber span {
    top: 0;
}
/* round 2 specials */
#round2 .gamewrapper {
    margin-top: 146px;
}

#round2 .gamewrapper.first, #winner2rounds {
    margin-top: 61px;
}

#round2 .gameNumber {
    height: 58px;
}

/* round 3 specials */
#round3 .gamewrapper {
    margin-top: 314px;
}

#round3 .gamewrapper.first, #winner3rounds {
    margin-top: 126px;
}

#round3 .gameNumber {
    height: 206px;
}

/* round 4 specials */
#round4 .gamewrapper {
    margin-top: 630px;
}

#round4 .gamewrapper.first, #winner4rounds {
    margin-top: 191px;
}

#round4 .gameNumber {
    height: 522px;
}

/* round 5 specials */
#round5 .gamewrapper {
    margin-top: 630px;
}

#round5 .gamewrapper.first, #winner5rounds {
    margin-top: 255px;
}

#round5 .gameNumber {
    height: 1155px;
}




