html {
    background-image: url(../images/background.jpg);
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    font-family: 'Poller One', cursive;
    overflow: hidden;
}

#logo {
    color: #FFE81F;
    font-size: 1.5;
    text-align: center;
    float: right;
    position: relative;
    top: 0px;
    right: 0px;
}

.glowing-border {
    border: 5px solid #dadada;
    border-radius: 15px;
    outline: none;
    border-color: #9ecaed;
    box-shadow: 0 0 10px #9ecaed;
}

.cardTitle {
    font-family: 'Exo', sans-serif;
    background-color: #9ecaed;
    color: black;
    width: 161px;
    position: absolute;
    top: 10px;
    left: 9px;
    text-align: center;
    padding-bottom: 2px;
}

.cardHP {
    font-family: 'Exo', sans-serif;
    background-color: #AFD086;
    color: black;
    width: 161px;
    position: absolute;
    top: 113px;
    left: 9px;
    text-align: center;
    padding-top: 2px;
}

#lukeCard,
#obiwanCard,
#vaderCard,
#yodaCard {
    position: relative;
    float: left;
}

#choose {
    display: block;
    font-family: 'Poller One', cursive;
    color: #FFE81F;
    font-size: 1.5;
    text-align: center;
}

#chooseEnemy {
    display: none;
    font-family: 'Poller One', cursive;
    color: #FFE81F;
    font-size: 1.5;
    text-align: center;
    clear:both;
}

#chosen {
    display: block;
    font-family: 'Poller One', cursive;
    color: #FFE81F;
    font-size: 1.5;
    text-align: center;
}

#chosenEnemy {
    display: block;
    font-family: 'Poller One', cursive;
    color: #FFE81F;
    font-size: 1.5;
    text-align: left;    
}

#battle {
    clear: both;
}

#characterBox {
    float: left;
    min-width: 800px;
}

.charCard {
    padding: 5px;
}

#outputWindow {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 500px;
}

#uiImage {
    position: absolute;
    bottom: -260px;
    left: -85px;
}

#outputUI {
    position: fixed;
    bottom: 0;
    left: 0;
    display: none;
}

#yourOutput {
    position: absolute;
    bottom: 100px;
    left: 35px;
    color: #9ecaed;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 14px;
}

#enemyOutput {
    position: absolute;
    bottom: 70px;
    left: 35px;
    color: red;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 14px;
}

.btn {
    display: inline-block;
    background: #333;
    border: .125em solid #000;
    padding: .5em 1em;
    position: relative;
    color: #fff;
    font: 1.5em/1.4 'Oswald', helvetica, arial, sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    -webkit-filter: drop-shadow(.5em 1em .25em rgba(0, 0, 0, .4));
    -moz-filter: drop-shadow(.5em 1em .25em rgba(0, 0, 0, .4));
    -o-filter: drop-shadow(.5em 1em .25em rgba(0, 0, 0, .4));
    -ms-filter: drop-shadow(.5em 1em .25em rgba(0, 0, 0, .4));
    filter: url(#f1);
    filter: drop-shadow(.5em .5em .25em rgba(0, 0, 0, .4));
    margin-right: 3em;
}

.btn:active {
    -webkit-filter: drop-shadow(.25em .5em .25em rgba(0, 0, 0, .4));
    -moz-filter: drop-shadow(.25em .5em .25em rgba(0, 0, 0, .4));
    -o-filter: drop-shadow(.25em .5em .25em rgba(0, 0, 0, .4));
    -ms-filter: drop-shadow(.25em .5em .25em rgba(0, 0, 0, .4));
    filter: url(#f2);
    filter: drop-shadow(.25em .5em .25em rgba(0, 0, 0, .4));
    -webkit-transform: translate(.25em, .5em);
    -moz-transform: translate(.25em, .5em);
    transform: translate(.25em, .5em);
}

.btn.double:before,
.btn:after {
    content: "";
    position: absolute;
    display: block;
    background: #333;
    border: .125em solid #000;
    width: 1.125em;
    height: 100%;
    top: -.125em;
    -webkit-transform-origin: bottom left;
    -moz-transform-origin: bottom left;
    transform-origin: bottom left;
}

.btn:after {
    right: -.25em;
    -webkit-transform: skewX(-20deg);
    -moz-transform: skewX(-20deg);
    transform: skewX(-20deg);
    border-left: none;
}

.btn.double:before {
    left: -.25em;
    -webkit-transform: skewX(20deg);
    -moz-transform: skewX(20deg);
    transform: skewX(20deg);
    border-right: none;
}

#attackDiv, #restartDiv {
    display: none;
    clear: both;
    margin-left: 30px;
}

#restartDiv {
    position: absolute;
    top: 200px;
}

#you {
    display: none;
    float: left;
}

#enemy {
    display: none;
}

#you .charCard {
    margin-left: 20px;
}