#start-screen {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url("./Images/entrance.jpg");
    background-size: cover;
    display: flex;
    justify-content: center;
    text-align: center;
}
  
html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

input {
    color: lightblue;
    font-family: Papyrus, fantasy;
    background: rgba(0,0,0,0);
    border: none;
}

body {
    background-image: url("./Images/moria.jpg");
    background-size: cover;
    background-repeat: no-repeat;  
    background-color: black; 
    color: lightblue; 
    font-family: Papyrus, fantasy;
}

.fight, #monster-select, .start {
    color: lightblue;
    background-color: rgba(0,0,0,0);
    font-family: Papyrus, fantasy;
    
}

.fight {
    border-color: lightblue;
    border-radius: 90px;
    border-color: lightblue;
    border-radius: 90px;
}

.start {
    color: lightblue;
    background-color: rgba(0,0,0,0);
    font-family: Papyrus, fantasy;
    border: none;
}

#monster-select {
    background: black;
    border-color: lightblue;
    border-radius: 90px;
}

.battle {
    width: 80vw;
    margin: auto;
    display: flex;
    justify-content: space-between;
}
  
.battle img {
    max-width: 250px;
}
  
.hp {
    position: relative;
    width: 100%;
    height: 2rem;
    background: red;
}
  
.hp-bar {
    position: absolute;
    height: 100%;
    background: green;
}
  
.hp-text {
    margin: 0;
    position: absolute;
    left: 1rem;
    top: 0.5rem;
    color: white;
    font-family: Papyrus, fantasy;
}
  
.ui {
    width: 80vw;
    margin: auto;
    display: flex;
    flex-flow: column;
    align-items: center;
}