@import url('https://fonts.googleapis.com/css?family=Roboto');

body{
    margin: 0px;
    padding: 0px;
    font-family: "Mukta";
    overflow: hidden;
    background: #222;
}

.main{
    background: #222;
    height: 100%;
    width:100%;
}

.main .header h1{
    color:white;
    text-align:center;
    border-bottom: 2px solid white;
    padding-bottom: 10px;
    font-family: "Roboto";
}

.main .navigation{
    background: #222;
    width:100%;
    height: auto ;
}

.main .navigation h2{
    margin:0;
    padding: 0;
    color: white;
    text-align: center;
    font-weight: 500;
}

.main .navigation p{
    color: white;
    text-align: center;
    font-weight: 400;
}
.main .navigation p span{
    color: rgb(78, 197, 78);
}

.main .canvas-parent{
    cursor: pointer;
    width: 100%;
    height: 300px;
    background: rgb(255,255,172);
}

.main .score{
    background: #222 ;
    width: 100%;
    height:auto;
}

.main .score .section-1{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin-top: 25px
}

.main .score .section-2{
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    border: 5px solid rgb(85,185,85);
    padding: 0;
}

.main .score .section-2 p{
    padding: 0px 50px 0px 50px;
    color: white;
    font-weight: 500;
    font-size: 30px;
    text-align: center;
}

.main .score #start{
    font-size: 25px;
    margin: 20px auto;
    width: 50%;
    height: auto;
    padding: 20px;
    border: 2px solid white;
    color: white;
    font-weight: 600;
    background-color: rgb(8, 197, 78);
}