.simpleBoard
{
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border-style: solid;

    margin: 5px;
}

.pegContainer
{
    position: absolute;
    box-sizing: border-box;
    padding: 5px;
    transition: top 0.1s ease, left 0.1s ease;
}

.pegContainer:active 
{
    cursor: grabbing;
}

.peg
{
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.pegTitle
{
    width: 100%;
    display: flex;
    padding: 5px 10px;
}

.pegCollision .peg
{
    box-shadow: 0px 4px 8px 0px #FF5C00!important;
}