#combatUI {
    position: fixed;
    height: 100%;
    width: 100%;
    margin: 0;
    display: none;
    z-index: 70;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

#discardDeckImage, #playerDeckImage {
    width: 10dvi;
    height: 10dvi;
}

#passTheTurnButton {
    width: 17dvi;
    height: 6dvi;
    font-size: 1.5dvi;

    color: white;
    background-image: url("../sprites/Button.png");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
}

#cardHandDiv {
    position: fixed;
    z-index: 70;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 42dvi;
}

#cardHand {
    height: 30dvi;
    width: 50dvi;
}

.cardInPlayerHandButton {
    width: 17dvi;
    height: 30dvi;
    margin-top: 0;
    transition: margin-top 0.6s ease;

    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
}

.cardInPlayerHandButton:hover {
    margin-top: -40dvi;
}

#passButtonDiv, #playerDeckDiv, #discardDeckDiv {
    position: fixed;
    z-index: 75;
    display: flex;
    justify-content: center;
    align-items: center;
}

#passButtonDiv {
    right: 1.2dvi;
    bottom: 15dvi;
}

#playerDeckDiv {
    right: 1.2dvi;
    bottom: 3dvi;
}

#discardDeckDiv {
    left: 1.2dvi;
    bottom: 3dvi;
}

.centered-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: white;
    font-weight: bold;
    text-shadow: 
        0 0 5px rgba(0, 0, 0, 1),
        0 0 10px rgba(0, 0, 0, 1),
        0 0 15px rgba(0, 0, 0, 1),
        0 0 20px rgba(0, 0, 0, 1),
        0 0 30px rgba(0, 0, 0, 1),
        0 0 50px rgba(0, 0, 0, 1);
}
