*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background: linear-gradient(#333,#346);
    font-family: 'Lacquer', sans-serif;
}
#settings{
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000a;
    overflow: hidden;

}
#grid{
    display: grid;
    grid-template-columns: 1fr 60% 1fr;
    grid-template-rows:auto;
    grid-template-areas:
    "title title title"
    "inputs score outputs"
    "inputs score outputs"
    "button1 button2 button3";
    width: inherit;
    height: inherit;
}
#title{
    grid-area:title;
    color: #fff;
    font-size: 2em;
    margin: auto;
}
#title h1{
    text-align: center;
}
#inputs{grid-area:inputs}
#outputs{grid-area:outputs}
#score{grid-area:score}
#button1{grid-area:button1}
#button2{grid-area:button2}
#button3{grid-area:button3}

#score *{
    color:#fff;
    font-size:1.2em;
}
#score table{
    width: 100%;
    border: 1px solid #eee;
    max-height: 100%;
}
#score table th, #score table td{
    border: 1px solid #afa;
    height:1.4em;
}

#play-btn{
    position: relative;
    background: none;
    border:5px solid #fff;
    border-radius:5px;
    left: 15%;
    width: 70%;
    height: 80%;
    font-family: inherit;
    font-size:3.5em;
    line-height: .6em;
    color: #fff;
    cursor: pointer;
    transition: all .4s cubic-bezier(.5,-1,0,1.3);
    z-index: 2;
}

#play-btn:hover{
    border:5px solid #2a2;
    background-color: #fff3;
    color: #2a2;
    font-size: 5em;
    text-transform: uppercase;
}

#play-btn:before , #play-btn::after {
    content: '';
    position: absolute;
    transition:all .4s ease-in-out;
    z-index: -1;
}
#play-btn::after{
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgb(25, 155, 42,0);

}
#play-btn:hover::after{
    height: 0%;
    background-color: rgb(25, 155, 42,1);
    top: 100%;

}
#count-con{
    display: none;
    position: absolute;
    text-align: center;
    padding: 1em;
    min-width: 135px;
    border-radius: 0 0 20px 20px;
    background-color: #222;
    color: #fff;
    font-size: 1.4em;
    left: 50%;
    transform: translateX(-50%);
}
#canvas{
    cursor:none;
}