@black: #444;
@white: #fff;
@grey: #ccc;
@pink: pink;


html, body{
    font-family: Arial;
    font-size: 13px;
    width: 100%;
    height: 100%;
    background: @grey;
    margin: 0;
    padding: 0;
}

div.page {
    position: relative;
    background: @white;
    border-left: 2px solid @black;
    border-right: 2px solid @black;
    width: 960px;
    min-height: 800px;
    margin: 0px auto;

    .clear {
        clear: both;
    }

    section {
        padding-top: 250px;

        table.board {
            margin: 0px auto;
            border: 0;

            td {
                height: 50px;
                width: 50px;
                text-align: center;
                background-color: pink;

                &:hover {
                    background-color: blue;
                }
            }
        }
        div.caption, div.tomenu {
            font-size: 20px;
            text-align: center;
        }
    }

    aside {
        position: absolute;
        width: 300px;
        height: 300px;
        right: 0px;
        top: 0px;

        table.score {
            position: absolute;
            right: 0px;
            width: 250px;
            border: 2px solid @black;

            td {
                text-align: center;
            }
        }
    }
}

div.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    opacity: 0.7;
    background-color: @black;
}
div.menu {
    display: none;
    position: absolute;
    z-index: 2;
    border-radius: 5px;
    border: 1px solid @pink;
    box-shadow: 5px 5px 10px @black;
    background-color: @pink;
    width: 400px;
    height: 200px;
    top: 50%;
    left: 50%;
    margin-top: -150px;
    margin-left: -250px;
    padding: 10px 50px 50px 50px;

    h1 {
        text-align: center;
        color: @black;
        padding-bottom: 40px;
        text-shadow: 0px 2px 2px rgba(255, 255, 255, 0.4);
    }

    button {
        width: 100%;
        font-size: 20px;
    }
}
