body {
	background-color: green;
}

#game-board {
    display: grid;
    grid-template-columns: repeat(7, 110px);
    justify-content: center;
    grid-row-gap: 40px;
    grid-column-gap: 20px;
	max-width: 800px;
	margin: auto;
}

.pile {
	position: relative;
	z-index: 1;
}

.win-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 50, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.win-div {
	font-size: 5em;
	color: #FFD700; /* Gold */
    background-color: darkgreen;
    border: 5px solid #DAA520; /* GoldenRod */
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 0 30px rgba(0,0,0,0.7);
    text-shadow: 2px 2px 4px #000000;
    text-align: center;
}

.button {
    font-size: 0.5em;
    padding: 10px 20px;
    background-color: #DAA520;
    color: black;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 20px;
    display: inline-block;
}

#new-game-button {
    grid-row: 1;
    grid-column: 3;
    align-self: center;
    justify-self: center;
    z-index: 10;
}


