#playing-cards{display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 100px;}

.card{display: flex;
    justify-content: space-between;
    width: 200px;
    height: 300px;
    background-color: white;
    border-radius: 15px;
    border: 1px solid black;
    box-shadow: 1px 3px 6px black;
    padding: 10px;
    font-weight: bold;
    transition: transform 0.6s ease;
    flex: 0 0 200px;
    margin-right: 20px;
    margin-bottom: 20px;}

.card:hover { transform: scale(1.10);
            border: 3px solid rgb(15, 65, 15); }   

.left{align-self: flex-start;
    font-size: 30px;
    flex-direction: column;
    width: 10px;
    display: flex;}

.middle{align-self: center;
        display: flex;
        flex-direction: column;
        font-size: 75px}

.right{align-self:flex-end;
    font-size: 30px;
    flex-direction: column;
    display: flex;
    width: 10px;
    transform: rotate(180deg);
    transform-origin: center center;
    }

body{background-color:rgb(115, 179, 115);}

.diamonds{color: red;}

.spades{color: black;}

.hearts{color:red;}

.clubs{color: black;}

.downside-column{transform: rotate(180deg);}

.downside-row{transform: rotate(180deg);}