:root {
    --levelTableColor: #F3FFC8;
}

* {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 18px;
    margin: 0px;
    padding: 0px;
    color: rgba(255, 255, 255, 0.66);
}

h1 {
    font-size: 2rem;
    padding: 2px;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
}

.header {
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
    margin-bottom: 3px;
}

.footer {
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
    margin-bottom: 3px;
}

.crediticons {
    display: block;
    position: center;
    bottom: 0px;
    font-size: small;
}

.crediticons > a {
    font-size: small;
}

.mdiv {
    text-align: center;
}

.centerdiv {
    display: inline-block;
}

#timeinfo {
    float: right;
    text-align: right;
    padding: 0px;
}

#xpinfo {
    float: left;
    text-align: left;
    padding: 0px;
}

#levelinfo {
    text-align: center;
    padding: 0px;
}

#fieldTable {
    border-spacing: 0px;
    border-collapse: collapse;
    table-layout: auto;
    width: 100%;
}

.levelState {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    /*font-size: 2.8vmin;*/
}

.itemImage {
    /*width: 50px;
    height: 50px;*/
    border-bottom: 0;
    display: block;
}

.levelWonOverlay {
    text-align: center;
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 60, 0, 0.55);
    z-index: 20;
}

.levelLostOverlay {
    text-align: center;
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(68, 0, 0, 0.6);
    z-index: 20;
}

.Center-Container {
    position: relative;
    height: 100%;
}

.Absolute-Center {
    width: 100%;
    height: 50%;
    overflow: auto;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

#levelEndOverlay{
    display: none;
}

#levelEndText {
    text-align: center;
    display: inline-block;
    font-size: 9vw;
    color: silver;
    z-index: 21;
}

#levelEndEmote {
    text-align: center;
    display: inline-block;
    margin-top: 29vmax;
    font-size: 20vh;
    color: white;
    z-index: 20;
}

#menuOverlayDiv {
    text-align: center;

    /*position: absolute;
      top: 30%;
      left: 8%;
      height: 40%;
      width: 84%;*/

    background-color: cadetblue;
    z-index: 10;
}

/*noinspection CssRedundantUnit,CssRedundantUnit*/
#levelTable {
    border: 6px solid var(--levelTableColor);
    text-align: center;
    alignment: center;
    -webkit-border-horizontal-spacing: 0px;
    -webkit-border-vertical-spacing: 0px;
}

.levelTableCell {
    width: 33%;
    border: 3px solid var(--levelTableColor);
}

.levelTableCellLocked {
    background-color: rgb(160, 5, 168);
}

.levelTableCellUnlocked {
    background-color: rgb(197, 214, 12);
}

.levelTableCellScored {
    background-color: rgb(61, 209, 11);
}

.lvlDivUnlocked {
    text-align: center;
    alignment: center;
    padding: 4px;
}

.lvlDivScored {
    text-align: center;
    alignment: center;
    padding: 4px;
}

.lvlDivLocked {
    text-align: center;
    alignment: center;
    padding: 4px;
}

.levelTableRow {
    border-bottom: 6px solid var(--levelTableColor);
}

.levelTableLabel {
    display: inline-block;
    text-align: center;
    font-size: 2.3vmax;
    margin-top: 1px;
    margin-bottom: 1px;
    margin-left: 3px;
    margin-right: 3px;
}

.levelTableLabelLocked {
    display: inline-block;
    text-align: center;
    font-size: 2.5vmax;
    margin-top: 1px;
    margin-bottom: 1px;
    margin-left: 3px;
    margin-right: 3px;
}

.level-menu-content {
    display: inline-block;
    font-size: 2.9vmax;
}

.level-menu-head {
    padding: 10px;
}

.block {
    position: absolute;
    height: 150px;
}


body {
    background-color: darkslategrey;
}