body {    
    color: rgb(200, 200, 200);
    background-color: rgb(0,0,0);
    font-family: "Comic Sans MS";         
    min-width: 1000px;  
    overflow-y: hidden;
}

input[type="button"] {
    cursor: pointer;
}

p {
    margin: 0;
    padding: 0;
}

.dungeon-explorer-banner {
    /* margin: 0 auto; */
    /* text-align: center; */
    /* margin-bottom: 1rem; */ 
    padding: 0rem;   
}

.dungeon-explorer-banner-img {
    /* margin: 0 auto; */
    /* text-align: center; */
    /* margin-bottom: 1rem; */
    width: 25%;
    width: 50px;
    height: 200px;
    object-fit: cover;
}

.dungeon-explorer-head {    
    width: 100%;
    display: flex;
    justify-content:space-between;  
    height: auto;  
}

.dungeon-explorer-head-row {
    display: flex;
    flex-direction: column;    
    font-size: 2rem;    
    height: auto;
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
    padding: 1rem;
}

.health-bar-holder {   
    background-color: rgb(70, 70, 70);    
    height: 40px;    
    width: 80%;        
    border: 2px solid white;
}

.bar {
    background-color: #FFFFFF;
    margin-top: 5px;
    margin-bottom: 5px;
    height: 25px;     
    /* align-items: center; */
    /* width: 100%;     */
    /* padding: 10px;         */
}

.health-value {
    font-size: 18px;    
    margin: 0 auto;
    height: 1.5rem;
    width: 2rem;    
    position: relative;  
    bottom: 1.5rem;  
    color: blue;
}

.score-value {
    color: white;
    font-size: 1.5rem;
}

.score-holder {
    font-size: 2rem; 
    text-align: center;  
    width: 80%;  
}

.authors {
    font-size: 2rem; 
    text-align: center;  
    width: 80%;  
}

.dungeon-explorer-canvas {
    border: 5px solid #008CBA;  
    background-color: rgb(100, 100, 100);        
    margin: auto;
    justify-content: center;
    /* width: 50%; */
}

.dungeon-explorer-body {    
    display: flex;
    width: 100%;
    text-align: center;   
    margin-bottom: 10px; 
}

.dungeon-explorer-foot-side {
    height: 100%;
    width: 100%;
    text-align: center;    
}

.dungeon-explorer-foot {
    display: flex;
    height: 35vh;
    width: 100%;        
}

#control-up, #control-right, #control-left, #control-down, #control-exit, #restart-game {    
    background-color: black;
    color: white;    
    max-width: 6rem;
    font-size: 1.2rem;
    padding: 4px;
    border: 2px solid white;    
}

.dungeon-explorer-game-over-mask {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    display: none;
    height: 100%;
    width: 100%;
    left: 0px;
    top: 0px;
}

.dungeon-explorer-game-over-window {
    background-color: rgb(50, 50, 50);
    border: 1px solid rgb(20, 20, 20);
    transform: translate(-50%, -125%);
    position: absolute;
    height: 15vh;
    width: 30vh;
    left: 50%;
    top: 50%;
}

.dungeon-explorer-game-over-row {
    justify-content: center;
    align-items: center;
    display: flex;
    height: 33%;
    width: 100%;
}

#dungeon-explorer-game-over-title {
    font-size: 3vh;
}

#dungeon-explorer-game-over-score {
    font-size: 2.4vh;
}


