html, body{
    margin:0;
    padding:0;
    background-color: black;
    color: white;
}

h1 {
    text-align: center;
}

.container{
    border: 4px solid white;
    border-radius: 8px;
    box-sizing: border-box;
    margin: 10px auto;
    padding: 0;
    position: relative;
    overflow: hidden;
    width: 800px;
}

.messages{
    height: 480px;
    padding: 24px;
}

.status{
    text-align: center;
}

.input{
    border: none;
    display: flex;
}

#player-input{
    background-color: black;
    border: 4px solid white;
    color: white;
    font-size: 16px;
    height: 24px;
    padding-left: 8px;
    width: 100%;
}

#player-input:focus{
    background-color: darkslategrey;
    border: 4px solid white;
    outline: none;
}

#confirm{
    background-color: white;
    border: 4px solid white;
    font-weight: bold;
    width: 100px;
}

#message-log{
    position: absolute;
    bottom: 0;
    width: 744px;
}

/*
TEXT STYLES
*/

em {
    font-weight: 300;
    text-transform: uppercase;
}

.name{
    text-transform: capitalize;
}

.choices {
    padding: 0 8px;
    border-right: 1px solid white;
}

.choices:last-of-type {
    border: none;
}

.happy, .arena-ballad{
    color: gold;
}

.moody, .somber-waltz{
    color: lightskyblue;
}

.edgy, .dark-serenade{
    color: red;
}

.neutral{
    color: lightgray;
}

.increase {
    color: lime;
}

.decrease {
    color: red;
}

.attack {
    color: red;
}

.sing {
    color: lime;
}

.missile {
    color: gold;
}

.inspect {
    color: cyan
}

.retreat {
    color: pink;
}