body{
    background-color: #f6f2e9;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.container{
    text-align: center;
    width: 412px;
}

.header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.score_box{
    background-color: #c8bdae;
    border: 1px solid #baab9f;
    padding: 10px 15px;
    border-radius: 5px;
}


.score_title{
    display: block;
    color: #f2e3da;
}
.score{
    color:white;
    display: block;
    margin-top: 4px;
}
.title{
    font-size: 70px;
    color: #776e65;
    font-weight: 800;
    margin: 0;
}

#game-board{
    width: 400px;
    height: 400px;
    border: 6px solid #baab9b;
    border-radius: 8px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-template-rows: repeat(4,1fr);    
}

.tile{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    background-color: #c8bdae;
    font-weight: bold;
    border: 4px solid #baad9f;
}
.game-start-btn{
    background-color: #90786a;
    color: white;
    border: 0;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 4px;
}
button{
    border: 1px solid black;
    border-radius: 3px;
    background-color: rgba(40, 36, 36, 0.461);
    color: rgb(14, 1, 1);
    scale: 1.3;
    cursor: pointer;
}
button:hover{
    background-color: white;
    color: black;
    transition: 0.5s;
    box-shadow: 5px 5px 30px 5px rgb(55, 53, 53);
}