/* style.css - Gaya tampilan */

body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f0f0f0;
    margin: 0;
    padding: 20px;
}

h1 {
    color: #333;
}

#gameBoard {
    display: grid;
    grid-template-columns: repeat(6, 80px);
    grid-gap: 10px;
    justify-content: center;
    margin: 20px auto;
}

.tile {
    width: 80px;
    height: 80px;
    background-color: white;
    border: 2px solid #ccc;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.tile.matched {
    background-color: lightgreen;
}

#timer, #score {
    font-size: 18px;
    margin: 10px;
}

button {
    margin: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}
