/*PLAYER LIFE*/

.player-life {
    margin-top: 10px;
    margin-bottom: 10px;
    align-items: baseline;
}

#player1-life,
#player2-life {
    position: relative;
    margin-left: 5px;
    margin-right: 5px;
    height: 8px;
    border: 1px solid #000;
    background-color: #000;
    box-sizing: content-box;
    border-radius: 5px;
}

#player1-life-bg,
#player2-life-bg {
    background-color: #d82101;
    height: 100%;
    width: 100%;
}

/*BATTLE BUTTONS*/

.battle-buttons {
    margin-bottom: 40px;
    justify-content: center;
}

.battle-button {
    font-family: "Walter Turncoat", cursive;
    font-weight: bold;
    font-size: 19px;
    text-shadow: 2px 2px 2px #f6e5b1;
    margin: 9px;
    height: 60px;
    width: 90px;
    background: center url(../img/Defend.png) no-repeat;
    background-size: contain;
    border: none;
    visibility: hidden;
}

.battle-button:first-child {
    background-image: url(../img/Attack.png);
}

.battle-button:hover {
    margin: 7px;
    height: 64px;
    width: 94px;
    text-shadow: 2px 2px 2px #3838c1;
}

.battle-button:first-child:hover {
    text-shadow: 2px 2px 2px #d82101;
}

.battle-button:focus {
    outline: none;
}

/* Battle buttons animations */

@keyframes red-pulse {
    0% {
        text-shadow: 2px 2px 2px #f6e5b1;
    }
    50% {
        text-shadow: 2px 2px 2px #d82101;
    }
    100% {
        text-shadow: 2px 2px 2px #f6e5b1;
    }
}

.red-pulse {
    animation-name: red-pulse;
    animation-duration: 1500ms;
    animation-iteration-count: 2;
}

@keyframes blue-pulse {
    0% {
        text-shadow: 2px 2px 2px #f6e5b1;
    }
    50% {
        text-shadow: 2px 2px 2px #3838c1;
    }
    100% {
        text-shadow: 2px 2px 2px #f6e5b1;
    }
}

.blue-pulse {
    animation-name: blue-pulse;
    animation-duration: 1500ms;
    animation-iteration-count: 2;
}

/* WEAPON AREA */

.weapon-name {
    margin-bottom: 0px;
}
