body {
    margin: 0;
    background-color: #F8F1DD;
    font-family: sans-serif;
}

.header {
    height: fit-content;
    background-color: #2A2D43;
    padding: 5px;
}

.middle {
    width: fit-content;
    margin: auto;
    display: flex;
}

.playerstats {
    color: #2A2D43;
    font-weight: 800;
    padding: 15px 30px;
}

.deck-container {
    height: 900px;
    width: 1000px;
    margin: auto;
    margin-top: 25px;
    position: relative;
}

.card-container {
    width: 300px;
    height: 430px;
    padding: 5px;
    position: absolute;
    /* display: flex; */
}    

.deck-one {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FF595E;
}

.deck-two {
    bottom: 0;
    left: 0;
    background-color: #2A2D43;
}

.deck-three {
    bottom: 0;
    right: 0;
    background-color: #2A2D43;
}

.draw-button {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    height: 30px;
    width: 150px;
    font-size: 1rem;
}

.card-top {
    width: 100%;
    height: fit-content;
    display: flex;
    padding: 0;
}

.card-cost {
    background-color: #f5e6c6;
    color: #2A2D43;
    font-weight: 800;
    font-size: 1.75rem;
    width: 45px;
    border-radius: 50%;
    aspect-ratio: 1;
    align-content: center;
    text-align: center;
}

.card-name {
    color: #f5e6c6;
    font-size: 1.5rem;
    font-weight: bold;
    margin-left: auto;
    margin-right: auto;
    align-content: center;
}

.card-effect {
    color: #f5e6c6;
    font-size: 1.25rem;
    align-items: center;
    text-align: center;
    margin-top: 70px;
}

.deck-label {
    position: relative;
}