body {
    background-color: #faf8ef;
    font-family: "Clear Sans", "Helvetica Neue", Arial, sans-serif;
    color: #776e65;
}

.container {
    width: 500px;
    margin: 0 auto;
}

.heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title {
    font-size: 80px;
    font-weight: bold;
    margin: 0;
}

.scores-container {
    display: flex;
}

.score-container, .best-container {
    background-color: #bbada0;
    padding: 15px 25px;
    border-radius: 3px;
    margin-left: 5px;
    text-align: center;
}

.score-label {
    color: #eee4da;
    font-size: 13px;
}

#score, #best-score {
    color: white;
    font-size: 25px;
    font-weight: bold;
}

.above-game {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.game-intro {
    font-size: 18px;
}

.restart-button {
    background-color: #8f7a66;
    color: #f9f6f2;
    padding: 10px 20px;
    border-radius: 3px;
    text-decoration: none;
    cursor: pointer;
}

.game-board {
    background-color: #bbada0;
    border-radius: 6px;
    width: 500px;
    height: 500px;
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 15px;
    padding: 15px;
    box-sizing: border-box;
}

.tile {
    width: 107.5px;
    height: 107.5px;
    background-color: #cdc1b4;
    border-radius: 3px;
    font-size: 55px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tile-2 { background-color: #eee4da; color: #776e65; }
.tile-4 { background-color: #ede0c8; color: #776e65; }
.tile-8 { background-color: #f2b179; color: #f9f6f2; }
.tile-16 { background-color: #f59563; color: #f9f6f2; }
.tile-32 { background-color: #f67c5f; color: #f9f6f2; }
.tile-64 { background-color: #f65e3b; color: #f9f6f2; }
.tile-128 { background-color: #edcf72; color: #f9f6f2; }
.tile-256 { background-color: #edcc61; color: #f9f6f2; }
.tile-512 { background-color: #edc850; color: #f9f6f2; }
.tile-1024 { background-color: #edc53f; color: #f9f6f2; }
.tile-2048 { background-color: #edc22e; color: #f9f6f2; }
