/* 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;
}




g-font {
    font-family: "Orbitron", sans-serif;
    font-optical-sizing: auto;
    font-weight:900;
    font-style: normal;
}


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

    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    background: #FF9F00;
    background-image: url('/static/game/reflection/img/shattered-dark.png');
}

#rule {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 10px;
    background-color: #FF9F00;
    border-radius: 10px;
    margin-top: 10px;
}

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

#start {
    margin: 10px;
    width: 200px;
    height: 100px;
    padding:5px 20px;
    border-radius: 10px;
    background-color: white;
    border: #F4631E solid 5px;
    font-size: 2rem;
}
#start:active {
    transform: scale(0.9);
}
#time, #score {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 3px;
  background-color: #FF9F00;
  margin-top: 30px;
  font-size: 2rem;
}
#score {
  background-color: #309898;
}
.time-table {
  font-size: 1.5rem;
  border-collapse: collapse;
}
.time-table th,td {
  width: 6rem;
  padding: 3px;
  border: 2px solid #309898;
  background-color: white;
  text-align: center;
}

