*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
body{
    background-color: grey;
}
.heading{
    background-color: lightblue;
    width: 1000px;
    height: 80px;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;

}
.GameContainer{
    background-color: white;
    width: 1000px;
    height: 555px;
    display: flex;
    flex-wrap: wrap;
   overflow: hidden;
}
#Timer{
    width: 90px;
    height: 35px;
    margin-top: 5px;
    margin-left: 10px;
    color: red;
    font-size: 30px;
    padding-left: 30px;
}
.Circle{
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: red;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 6px;
}
label{
    margin-top: 5px;
    margin-left: 40px;
    font-size: 30px;
    color: green;
}
#Target{
    margin-top: 5px;
    margin-left: 10px;
    width: 90px;
    height: 35px;
    color: red;
    font-size: 30px;
    padding-left: 30px;

}
#Score{
    margin-left: 10px;
    margin-top: 5px;
    width: 90px;
    height: 35px;
    color: red;
    font-size: 30px;
    padding-left: 25px;
}
.main{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}