/* Andy Bell’s Modern CSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #app {
  isolation: isolate;
}
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  font-weight: normal;
}






body {
    font-family: "Zen Kurenaido", sans-serif;
    font-weight: 400;
    font-style: normal;

    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    background: #3B3B1A;
    /* background-image: url('/static/game/color/random-grey-variations.png'); */
}

#canvas {
    margin: 20px;
    border: 10px solid #AEC8A4;
    border-radius: 10px;
  /* background-color: #eee; */
}

#shoot {
    margin: 20px;
    padding: 5px;
    width: 200px;
    border-radius: 10px;
    font-size: 40px;
    background-color: #E7EFC7;
    border: 4px solid #AEC8A4;
    transition: transform 0.1s;
}
#shoot:active {
    transform: scale(0.9);
}


.score-panel {
    background-color: #E7EFC7;
    color: #3B3B1A;
    border: 4px solid #AEC8A4;
    border-radius: 10px;
    padding: 10px 20px;
    margin-top: 10px;
    font-size: 18px;
    text-align: center;
}

.score-panel table {
  width: 100%;
  border-collapse: collapse;
}
.score-panel th,
.score-panel td {
    width: 5rem;
    height: 45px;
    border: 2px solid #8A784E;
    padding: 5px;
    font-size: 20px;
    color: #3B3B1A;
    background-color: #AEC8A4;
}
.score-panel td {
    background-color: #E7EFC7;
}