body {
    background-color: blanchedalmond; 
    margin: 0 0 0 0;
    font-family: sans-serif;
}

#missingFeatureList
{
    color: red;
}

.center
{
    margin-left: auto;
    margin-right: auto;
}

#outerContainer
{
    background-color: white; 
    border-left: 1px solid gray; 
    border-right: 1px solid gray;
}

header
{
    margin-bottom: 10px; 
    padding-top: 5px; 
    width: 450px;
}

h1
{
    float: left; 
    margin: 0;
    font-style: italic;
}

h2
{
    float: right;
    margin: 0;
}

#pieCanvasContainer
{
    width: 50px; 
    height: 50px;
}

#imgVictory
{
    width: 50px;
    height: 50px;
}

#statusBar
{
    clear: both; 
    width: 100%; 
    text-align: center;
}


.positiveScore
{
    color: green;
}

.negativeScore
{
    color: red;
}

#canvasAndQueueContainer
{
    clear: both;
}

.scoreChange
{
    position: absolute;
    pointer-events: none;
    font-size: x-large;
    text-shadow: 0 0 2px white;
    width: 32px;
    text-align: center;
}

#nextPiece
{
    position: relative; 
    top: -8px
}

#levels
{
    border-bottom: 1px solid black; 
    text-align: center; 
    margin-top: 5px;
}

.levelLink
{
    text-decoration: underline;
    cursor: pointer;
}

ol#levelList
{
    padding-left: 0px;
    margin-top: 5px;

}

    ol#levelList li
    {
        list-style-position: inside;   
        padding-left: 20px;  
        background-repeat: no-repeat no-repeat;
        background-size: contain;   
    }

        ol#levelList li.completedLevel
        {
            background-image: url('Images/checkmark.gif');
            color: darkgreen;
        }

        ol#levelList li.currentLevel
        {
            background-image: url('Images/current.png');
            color: goldenrod;
        }


footer
{
    width: 450px; 
    text-align: justify;
}

.copyright
{
    font-size: x-small;
    text-align: center;
}


@media only screen and (max-device-width: 640px) 
{
    header
    {
        width: 100%;
    }

    footer
    {
        width: 100%;
    }

    #rightPanel
    {
        display: none;
    }
}