:root
{
    --light-color : #afbdd4;
    --dark-color : #344d58;
    --hover-color : #809bae;
    --border-color :black;
    --board-color : white;
}
*
{
    box-sizing: border-box;
    margin:0;
    padding: 0;
}
body
{
    background-color: var(--dark-color);
    font-family: "Spicy Rice";
}
#back
{
    width : 100vw;
    height: 100vh;
    position: absolute;
}
#wrapper
{
    width : 1000px;
    margin-right : auto;
    margin-left: auto;
    display: flex;
    justify-content: center;
}
#panel
{
    color: var(--dark-color);
    width : 200px;
    text-align: center;
    background-color: white;
    opacity: .9;
    margin: 20px;
    border: 2px solid var(--border-color);
    border-radius: 7px;
    height : 800px;
    box-shadow: 10px 10px 10px black;
}
main
{
    box-shadow: 10px 10px 10px black;
    border-radius: 7px;
    margin : 20px;
    width: 800px;
    height: 800px;
    border: 2px solid var(--border-color);
}
#canvas
{
    position : absolute;
    box-shadow: 10px 10px 10px black;
    border-radius: 7px;
}
#boardCanvas
{
    box-shadow: 10px 10px 10px black;
    background: white;
    background-color: var(--board-color);
    opacity: 0.9;
    position : absolute;
    border-radius: 7px;
}
button
{
    background-color: var(--dark-color);
    border: 1px solid ;
    border-radius: 5px;
    padding : 5px;
    width : 100px; 
    color : var(--light-color);
    font-weight: bold;
    margin-top: 20px;
}
button:hover
{
    background-color:var(--hover-color);
    color: white;
}
label
{
    display: inline-block;
    font-size: 2rem;
    color : red;
    text-shadow: black 1px 1px;
}
.topPadded
{
    margin-top: 20px;
    color : var(--dark-color);
}
#lifeLabel
{
    font-size: 3rem;
}
#scoreLabel,#stageLabel
{
    color : red;
    font-size: 2rem;
    text-shadow: 1px 1px black;
}
select
{
    color : inherit;
    font-family: "Spicy Rice";
}
#wallImage
{
    display: none;
}
fieldset
{
    color: inherit;
    margin : 10px;
    padding: 20px;
    margin-top:50px;
}
#energyDiv
{
    display: block;
    height : 20px;
    background-color : lightgreen;
    align-self: left;
    margin : 10px;
    border-radius: 3px;;
}
.message
{
    /* display: none; */
    border : 3px solid var(--dark-color);
    border-radius: 7px;
    position: absolute;
    margin : auto;
    line-height: 6rem;
    background-color:var(--hover-color);
    opacity: .95 ;
    width : 800px;
    height : 400px;
    top : 200px;
    left: auto;
    right : auto;
    font-size: 7rem;
    color : red;
    text-shadow: 5px 5px 5px black;
    text-align: center;
    letter-spacing: 1.2rem;
    box-shadow: 10px 10px 10px black;
    display: none;
    padding-top: 50px;
    z-index: 1;
}
label
{
    letter-spacing: .5rem;
}
a
{
    font-family:  Verdana, Geneva, Tahoma, sans-serif;
    text-decoration: none;
    /* font-weight: bold; */
    color: white;
    border: solid 2px black;
    background-color: orangered;
    text-shadow: 1px 1px black;
    border-radius: 5px;
    width : 150px;
    padding : 7px;
    margin-top : 10px;
    margin-left : 15px;
    display: block;
    box-shadow: 3px 3px 3px black;
}
a:hover
{
box-shadow: none;

}
#canvases
{
    position: relative;
}
.point
{
    text-align: center;
    position: absolute;
}