html { 
    font-size: 1em; /* = 16px */
    line-height: 1.6;
    background-color: #fffffc;
}

body {
    margin: 0 auto;
    max-width: 800px;
    color: #444;
    background-color: #fffff6;
}

#canvas-container {
    background-color: #222;
    background-image: url('map_back.png');
    background-position: 0 0px;
    background-repeat: no-repeat;
}

.error {
    color: red;
    font-weight: bold;
}

/*
 * ===========================================================================
 * Character Creation Screen elements
 * ===========================================================================
 */
.show {
    display:block;
    border: #fff 1px solid;
}

.hide {
    display:none;
}

.logo {
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.75);
    width:  167px; /* 315px; */
    height: 125px; /* 250px; */
}

section#creation {
    background-color: #222;
    background-image: url('map_back.png');
    background-position: 0 0px;
    background-repeat: no-repeat;
    height: 800px;
}

section#creation h1, h2 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
}

section#creation h2 {
    font-size: 1.2em;
}

section#creation p {
    text-align: center;
}

.btn {
    display:inline-block;
    cursor: pointer;
    width: 128px;
    height: 28px;
    font-size: 1.2em;
    background-color: rgba(200, 200, 200, 0.25);
    border: #222 1px solid;
    box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.5);
}

.btn-pronouns {
    width: 22px;
}

.btn:hover {
    background-color: rgba(250, 250, 200, 0.5);
}

.input-text {
    height: 28px;
    font-size: 1.2em;
    font-family: serif;
    padding-left: 2px;
    box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.25) inset;
    background-color: white;
}

.readonly {
    background-color: transparent;
}

.btn-checked {
    background-image: url('marker_on.png');
    background-position: 2px 6px;
    background-repeat: no-repeat;
}

.btn-unchecked {
    background-image: url('marker_off.png');
    background-position: 2px 6px;
    background-repeat: no-repeat;
}

.btn-disabled {
    color: rgba(128, 128, 128, 0.25);
    cursor: default;
}

.btn-disabled:hover {
    background-color: rgba(200, 200, 200, 0.25);
}

.warn {
    background-color: rgba(255, 0, 0, 0.1);
    color: red;
    font-weight: bold;
    border: red 1px solid;
    margin-left: 10px;
    margin-right: 10px;
}
