*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#1e1f22;
    color:#ffffff;
    font-family:Arial,Helvetica,sans-serif;
}

.liveContainer{

    max-width:900px;
    margin:40px auto;
    padding:20px;

}

.liveHeader{

    text-align:center;
    margin-bottom:35px;

}

#title{

    font-size:38px;
    font-weight:bold;

}

#venue{

    margin-top:10px;
    font-size:22px;
    color:#cccccc;

}

#dateTime{

    margin-top:5px;
    color:#aaaaaa;

}

.liveScore{

    background:#2a2c31;

    border-radius:12px;

    padding:30px;

}

.playerRow{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 0;

    border-bottom:1px solid #444;

}

.playerRow:last-child{

    border:none;

}

.playerName{

    font-size:34px;
    font-weight:bold;

}

.setScore{

    font-size:60px;
    font-weight:bold;
    color:#00c853;

}

.setHistory{

    margin-top:30px;

    text-align:center;

    font-size:24px;

    color:#cccccc;

}

.currentSetBox{

    margin-top:35px;

    text-align:center;

}

.setTitle{

    font-size:34px;

    margin-bottom:20px;

    color:#00c853;

}

.pointScore{

    font-size:90px;

    font-weight:bold;

}

@media(max-width:700px){

    .liveContainer{

        width:95%;

    }

    #title{

        font-size:28px;

    }

    .playerName{

        font-size:24px;

    }

    .setScore{

        font-size:42px;

    }

    .pointScore{

        font-size:60px;

    }

}