@import url('https://fonts.googleapis.com/css?family=Asap:400,500,600,700|Racing+Sans+One&display=swap');
* {
    margin: 0;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Asap', sans-serif;
}
header{
    background-color: white;
    font-family: 'Racing Sans One', cursive;
    font-weight: 400;
    font-size: 50px;
    text-align: center;
    padding-bottom: 20px;
}
.scoreboard{
    margin: 20px auto;
    border: 3px solid black;
    border-radius: 5px;
    width: 300px;
    height: 80px;
    text-align: center;
    font-size: 40px;
    position: relative;
    content: normal;
}
#scoreTitle{
    background-color: silver;
    padding: 0px;
    margin-top: 0px;
    border: 3px solid black;
    font-weight: bolder;
    font-size: 30px;
    width: 150px;
    position: absolute;
    top: -25px;
    left: 75px;
}
#scoreTime{
    font-weight: bolder;
    position: relative;
    margin-top: 20px;
    text-align: center;
}
.lane{
    margin: 10px auto;
    padding: 10px;
    border-top: 3px solid black;
    border-bottom: 3px solid black;
    height: 90px;
    transition: 0.3s ease;
}
.laneBtn{
    border: 2px solid black;
    border-radius: 50%;
    height: 60px;
    width: 60px;
    font-size: 40px;
}
.laneBtn:hover{
    background-color: lightgray;
    cursor: pointer;
}
#lane1{
    background-color: red;
}
#lane2{
    background-color: blue;
}
#lane3{
    background-color: green;
}
#lane4{
    background-color: yellow;
}
.laneText{
    border: 2px solid black;
    height: 60px;
    width: 300px;
    font-weight: bolder;
    font-size: 40px;
    position: absolute;
    left: 30%;
}
#laneText1.value{
    font-weight: bolder;
    font-size: 40px;
}
.readysetgo{
    text-align: center; 
    margin: 10px;
}
.startBtn{
    border: 2px solid black;
    border-radius: 5%;   
    height: 60px;
    width: 120px;
    font-size: 40px;
    display: inline-block;
}
#ready{
    background-color: rgba(70, 70, 161, 0.3);
    width:120px;
}
#set{
    background-color: rgba(218, 205, 23, 0.5);
    width:100px;
}
#go{
    background-color: rgba(4, 167, 4, 0.7);
    width:80px;
}
#ready:hover{
    background-color: rgba(70, 70, 161, 0.5);
    cursor: pointer;
}
#set:hover{
    background-color: rgba(218, 205, 23, 0.7);
    cursor: pointer;
}
#go:hover{
    background-color: rgba(4, 167, 4, 0.9);
    cursor: pointer;
}
