@import url('https://fonts.cdnfonts.com/css/pirates');

body{
    text-align: center;
    font-family: 'PiratesBlackbeard', sans-serif;
    background-color: cadetblue;
}
table{
    margin: auto;
    height: 722px;
    width: 722px;
    box-sizing: border-box;
}
.node{
    overflow:hidden;
    height: 70px;
    width: 70px;
    box-sizing: border-box;
    overflow: auto;
}

.node:not(.invisible) {
    overflow: hidden;
    white-space: nowrap;
    border-radius: 14px;
    box-shadow: rgba(45, 35, 66, 0.4) 0 2px 4px,rgba(45, 35, 66, 0.3) 0 7px 13px -3px,#D6D6E7 0 -3px 0 inset;
    background-color: aliceblue;
}

.trap:not(.invisible){
    background-color: lightcoral;
}
.invisible{
    border: 0px solid black;
}
#stats{
    display: inline-block;
    font-family: sans-serif;
    font-size: 20px;
}
.checkPoint:not(.invisible){
    background: rgb(106, 255, 131);
}