﻿body {
    background-color: #F5EFE6;
}

.board {
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 5px;
    box-shadow: 0px 0px 15px #888888;
    padding-bottom:30px;
}

canvas {
    border-radius: 5px;
}

.piece {
    border: 1px solid #F5EFE6;
}

.piece_hover {
    border: 1px solid #ccc;
    background-color: #ffffff;
    border-radius: 5px;
}

.piece_selected {
    background-color: #ddd;
    border: 1px #bbb inset;
    border-radius: 5px;
}

a {
    text-decoration: none;
    color: #000080;
}

    a:hover {
        text-decoration: none;
        color: #0000ff;
    }

#wrapper {
    width: 500px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: auto;
    padding: 10px;
    position: relative;
    box-shadow: 0px 0px 15px #888888;
    background-color: #F5EFE6;
    border-radius: 10px;
}

#savetext {
    position: absolute;
    top: 10px;
    left: 660px;
    width: 480px;
    padding: 20px;
    box-shadow: 0px 0px 15px #444444;
    background-color: #F5EFE6;
    border-radius: 10px;
}

textarea {
    height: 515px;
    width: 490px;
    border: none;
    background-color: #F5EFE6;
    font-size:18px;
    font-family:Cambria;
}

button {
    border-radius: 5px;
    border: solid 1px #3F1A00;
}

#button_panel {
    position: absolute;
    top: 530px;
    left: 10px;
    width: 480px;
    padding: 5px;

}
