body {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    background: url(assets/mario-bg.jpg);
    background-size: cover;
}

#board {
    width: 540px;
    height: 540px;
    background:url(assets/soil.png);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    border:3px solid white;
    border-radius: 25px;
}

#board div {
    width: 180px;
    height: 180px;
    background-image: url(assets/pipe.png);
    background-size: cover;
}

#board div img {
    width: 100px;
    height: 100px;

    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    -ms-user-select: none;
}

