*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
body{
    background-color: #2a2a2a;
}
.container{
    height: 800px;
    padding: 20px;
}
.child{
    width: 60%;
    float: left;
    padding: 20px;
}
.child:nth-child(2){
    width: 40%;
    float: right;
}
.chessImg{
    width: 700px;
    height: 700px;
}
.vision{
    width: 100%;
    color: white;
    font-size: 35px;
    text-align: center;
    padding: 20px;
    font-weight: bold;
}
.startBtn{
    padding: 20px;
    width: 100%;
    background-color: #7d945d;
    color: #eeeed5;
    font-size: 32px;
    border-radius: 30px;
    bottom: 0;
    border: 2px solid #7d945d96;
    cursor: pointer;
    font-weight: bold;
}
.startBtn:hover{
    background-color: #85a94e;
    box-shadow: 1px #b6cf8f;
    color: white;
}
.score{
    color: white;
    font-size: 30px;
    width: 100%;
    text-align: center;
    padding: 20px;
    font-weight: bold;
}
.timer{
    color: white;
    font-size: 30px;
    width: 100%;
    text-align: center;
    padding: 20px;
}
.target{
    color: white;
    font-size: 60px;
    width: 100%;
    text-align: center;
    padding: 20px;
    font-weight: bold;
}
.wrong{
    color: red;
    font-size: 20px;
}
.icons{
    font-size: 60px;
    width: 100%;
    text-align: center;
    padding: 20px;
}