:root{
    box-sizing: border-box;
}

body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    
}

.container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

#reset {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin: 10px;
    width: 100px;
    height: 3rem;
    margin-bottom: 20px;
    background-color: red;
    color: white;
    border: none;
}

.score{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    font-size: 24px;
    margin: 10px;
}

.message{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    margin: 10px;
    width: 100%;
    height: 1rem;
    margin-top: 20px;
}


.field {
    border: 1px solid rgb(0, 0, 0);
    margin: auto;
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cell {
    border: 1px solid rgb(0, 0, 0);
    display: flex;
    width: 100px;
    aspect-ratio: 1;
    /* height: 50px; */
    margin: 0px; 
    padding: 0px;
    justify-content: center;
    align-items: center;
    font-size:72px;
}