body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #121212;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
}
#heading {
    font-size: 1.75rem;
}
.game-container {
    text-align: center;
}

.game-board {
    display: grid;
    grid-template-columns: repeat(4, 100px);
    grid-gap: 10px;
    margin: 20px auto;
}

.card {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    background-color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    color: white;
    cursor: pointer;
    transition: transform 0.5s;
    transform-style: preserve-3d;
}

.card.flipped {
    background-color: #fff;
    color: #333;
}

.card.matched {
    background-color: #6aaa64; /* Green */
    cursor: default;
    pointer-events: none;
}

#restart-btn {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
}
