body {
    background-color: rgb(19, 230, 216);
}

h1 {
    text-align: center;
    color: darkblue;
    font-family: 'Arial', sans-serif;
}

.box {
    background-color: rgb(240, 231, 96);
    border: 2px solid darkblue;
    border-radius: 5px;
    font-size: 24px;
    font-weight: bold;
    height: 60px;
    margin: 5px;
    width: 60px;
    color: #ff0000;
}
#container {
    display: grid;
    grid-template-columns: repeat(3, 70px);
    grid-template-rows: repeat(3, 70px);
    justify-content: center;
    margin-top: 20px;
}

#reset {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    font-size: 16px;
    background-color: darkblue;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
p {
    text-align: center;
    font-size: 18px;
    color: rgb(227, 20, 20);
    font-family: 'Bebas Neue', sans-serif;
}

#new_game {
    display: block;
    margin: 10px auto;
    padding: 10px 20px;
    font-size: 16px;
    background-color: green;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
#msg{
    /* making text bold and easy to read */
    text-align: center;
    font-size: 40px;
    color: rgb(16, 16, 69);
    font-family: 'Arial', sans-serif;
    font-weight: bold;
}
#msg_container{
    margin-top: 20px;
}

.hide{
    display: none;
}