body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-shadow: 2px 2px 2px black;
}

.game {
    width: 500px;
    height: 500px;
    margin: 0 auto;
    background-color: #ec86d6;
    color: #fff;
    border: 2px solid #f3b5ee;
    display: grid;
    grid-template: repeat(3, 1fr) / repeat(3, 1fr);

}

.game div {
    border: 2px solid #350625;
    border-radius: 2px;
    font-family: Helvetica, sans-serif;
    font-weight: bold;
    font-size: 4em;
    display: flex;
    justify-content: center;
    align-items: center;

}

#divButtons {
    text-align: center;
    padding: 20px;
}
button {
    width: 80px;
    height: 30px;
    border-radius: 6px;
    box-shadow: 2px 2px 2px;
}

.cpNomes {
    border-radius: 6px;
    width: 120px;
    height: 30px;
}