*{
    background-color: rgb(233, 231, 231);
    font-family: 'permanent marker', cursive;

}

h1{
    text-align: center;
    font-size: 2em;
    color: lightcoral;
    margin-bottom: 0;
}

.container{
    display: flex;
    justify-content: center;
    align-items: center;

}

#message{
    font-size: 1em;
    color: black;
    text-align: center;
    margin: 0;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    grid-template-rows: repeat(3, 1fr); 
    grid-gap: 10px;
    height: 80vh;
    width: 80vh;
    
}

.box{
    width: 100%;
    height: 100%;
    background-color: lightcoral;
    margin: 10px;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 4em;
    font-family: 'permanent marker', cursive;

}

#reset{
    background-color: lightskyblue;
    color: black;
    font-size: 1em;
    padding: 5px;
    border: none;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
}