* {
    font-family: 'Shantell Sans', cursive;
}

/* styling body  */
body {
    background-color: #fbf8f1;
}

/* aligning heading and hr  */
h1 {
    text-align: center;
    font-size: 2.5rem;
}

hr {
    align-items: center;
    width: 50%;
    margin-top: -15px;
}

/* styling score div  */
#score-div {
    display: flex;
    flex-direction: row;
    width: 40%;
    margin: 10px auto;
}

.scores {
    width: 180px;
    height: 70px;
    background-color: #ed995b;
    color: white;
    display: block;
    border-radius: 12px;
    margin: 0 auto;
}

.scores h2 {
    font-size: 1rem;
    text-align: center;
}

#score {
    display: flex;
    justify-content: center;
    font-size: 1.5rem;
    margin-top: -15px;
}

/* styling of restart button */
#restart-btn {
    width: 150px;
    height: 50px;
    background-color: #ed995b;
    color: white;
    display: block;
    border-radius: 12px;
    margin: 15px auto;
    font-size: 20px;
}

/* styling board div  */
#board-div {
    width: 399px;
    height: 400px;
    background-color: #cdc1b5;
    border: 6px solid #bbada0;
    border-radius: 5px;
    margin: 0 auto;
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
}

/* styling of tiles */
.tile {
    width: 90px;
    height: 90px;
    border: 5px solid #bbada0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* specific colors of each tiles */
.x2 {
    background-color: #eee4da;
    color: #727371;
}

.x4 {
    background-color: #ece0ca;
    color: #727371;
}

.x8 {
    background-color: #f4b17a;
    color: white;
}

.x16 {
    background-color: #f59575;
    color: white;
}

.x32 {
    background-color: #f57c5f;
    color: white;
}

.x64 {
    background-color: #f65d3b;
    color: white;
}

.x128 {
    background-color: #edce71;
    color: white;
}

.x256 {
    background-color: #edcc63;
    color: white;
}

.x512 {
    background-color: #edc651;
    color: white;
}

.x1024 {
    background-color: #eec744;
    color: white;
}

.x2048 {
    background-color: #ecc230;
    color: white;
}

.x4096 {
    background-color: #fe3d3d;
    color: white;
}

.x8192 {
    background-color: #ff2020;
    color: white;
}