.title{
    color: white;
    text-align: center;
    font-size: 40pt;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    
}
body{
    background-color: rgb(5, 52, 80);
    align-self: center;
    text-align: center;
    
}
.playspace{
    padding-right: 0px;
    padding-left: 0;
    border:1px solid white;
    width: 500px;
    height: 500px;
    justify-content: center;
    display: flex;
    flex-grow: 1;
    flex-wrap: wrap;
    margin:5px;
    left: 500px;
    
}
.tile {
    background-color: rgb(5, 37, 37);
    flex:1 1 15px;
    border-top: solid 1px black;
    border-left: solid 1px black;
    display: flex;

}
.menuDeco{
    display: flex;
    justify-content: space-between;
    
}
.pic1{
    max-width: 50px;
}
.pic2{
    max-width: 100px;
}
.snake{
    background-color: rgb(22, 231, 22);
    flex:1 1 15px;
    border-top: solid 1px black;
    border-left: solid 1px black;
    display: flex;
}
.apple{
    background-color: red;
    flex:1 1 15px;
    border-top: solid 1px black;
    border-left: solid 1px black;
    display: flex;
}
.snakehead{
    background-color: rgb(22, 231, 22);
    flex:1 1 15px;
    border-top: solid 1px black;
    border-left: solid 1px black;
    display: flex;
}
.score{
    color: white;
    font-size: 14pt;
    background-color: rgb(33, 82, 44);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.board{
    display: flex;
    align-content: center;
    width: 500px;
    height: 500px;
}
.scoreTab{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;

}