* {
  margin: 0px;
  padding: 0px;
}

body {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 100vh;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Open Sans",
    "Helvetica Neue",
    sans-serif;
  font-size: 3rem;
}

.jogodavelha {
  display: grid;
  grid-template-columns: 10rem 10rem 10rem;
  border: 1px solid black;
}

.casa {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 10rem;
  height: 10rem;
  border: 1px solid black;
}

#resp {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 10rem;
  height: 5rem;
  font-size: 1.5rem;
  margin-left: 2rem;
  color: rgb(0, 0, 0);
  background-color: rgb(255, 255, 255);
  border: 1px solid black;
}

button {
  background-color: black;
  color: white;
  border: 0;
  border-radius: 10%;
  margin-left: 2rem;
  font-size: 1.5rem;
  padding: 1rem;
}
