body{
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;

    
}

hr{

    width: 500px;
}

#title{
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 2px;

}

#board {
    display: grid;
    grid-template-columns: repeat(7, 60px); /* 7 tiles per row */
    gap: 5px;
    margin: 0 auto;
    margin-top: 3px;
    width: max-content; /* shrink-wrap the grid */
}


.tile{
    /*tile class*/

    border:2px solid lightgrey;
    width: 60px;
    height: 60px;
    margin: 2.5px;
    
    /*text*/

    color: black;
    font-size: 36px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;


}

.correct{
    background-color: #6aaa64;
    color: white;
    border-color: white;



}

.present{

    background-color: #C9B458;
    color: white;
    border-color: white;



}

.absent{
    background-color: #787c7e;
    color: white;
    border-color: white;
}