/* General - Start */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

.wrapper {
    overflow: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

:root {
    --accent: #6600ff;
    --golden: #ecbe07;
}

.content {
    max-width: 70%;
    margin: 0 auto;
}


/* General - End */
/* Gueen - Start */
.queen__message {
    font-size: 24px;
    font-weight: 600;
}

.queen__deck,
.queen__played-cards {
    position: relative;
    padding: 10px;
    width: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    column-gap: 6px;
    row-gap: 6px;
}

.queen__deck {
    background-color: var(--accent);
}

.queen__played-cards {
    background-color: var(--golden);
}

#restartGameButton {
    background-color: var(--accent) !important;
}

.game-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    width: 90px;
    /* height: 280px; */
    background-size: contain;
    background-repeat: no-repeat;
    /* background-position: center; */
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 5px 15px rgba(149, 157, 165, 0.2);
}

/* Queen - End */