/* *{
            padding:0;
            margin: 0;
            box-sizing: border-box;
            font-family: sans-serif;
        }
        body{
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        h1{
            font-size: 50px;  
        }
        .game{
            display: flex;
            justify-content: space-between;
            width:20%;
        }
        #score{
            height: fit-content;
            width:auto;
            background-color: brown;
            color: white;
            text-align: center;
            padding: 10px;
            border-radius: 20px;
            font-size: 24px;  
        }
        span{
            display: block;
        }
        p{
            font-size: 28px;
            margin-top: 20px;
        }
        .grid{
            height: 440px;
            width: 440px;
            background-color: rgb(214, 147, 59);
            border: 5px solid brown;
            margin-top: 20px;
            display: flex;
            flex-wrap: wrap;
            gap:10px;
            padding: 10px;
        }
.grid div{
    height: 95px;
    width: 95px;
    background-color: rgb(190, 131, 43);
    border-radius: 5px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(113, 16, 16);
    font-weight: 600;
} */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* -------- HEADER -------- */
h1 {
    font-size: clamp(32px, 6vw, 50px);
}

.game {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: min(420px, 100%);
    gap: 10px;
}

#score {
    background-color: brown;
    color: white;
    text-align: center;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: clamp(16px, 3vw, 24px);
}

span {
    display: block;
}

/* -------- INFO TEXT -------- */
p {
    font-size: clamp(18px, 4vw, 28px);
    margin-top: 15px;
    text-align: center;
}

/* -------- GRID -------- */
.grid {
    width: min(90vw, 440px);
    aspect-ratio: 1 / 1;
    background-color: rgb(214, 147, 59);
    border: 5px solid brown;
    margin-top: 20px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 10px;
}

/* -------- GRID CELLS -------- */
.grid div {
    background-color: rgb(190, 131, 43);
    border-radius: 5px;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: clamp(20px, 6vw, 40px);
    color: rgb(113, 16, 16);
    font-weight: 600;
}


