@import url("https://fonts.googleapis.com/css2?family=Nova+Round&display=swap");

body {
    font-family: "Nova Round", "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: 900;
    align-items: center;
    gap: 20px;
}

.gameBoard {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
}

.cell {
    border: 1px solid black;
    border-radius: 10px;
    margin: 5px;
    height: 50px;
    width: 50px;
    /* center the content */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    font-weight: 900;
    font-size: 2rem;
}

.cell:hover {
    transform: scale(1.1);
    background-color: violet;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}
form input {
    border: 1px solid grey;
    border-radius: 5px;
    outline-color: violet;
}
form label {
    align-self: flex-start;
}

button {
    background-color: white;
    border: 1px solid black;
    border-radius: 5px;
    font-weight: 900;
}

button:hover {
    background-color: violet;
    color: white;
}

.reset-game {
    display: none;
}
