/* 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: #000000;
    background-image: url('/static/game/stopwatch/tiny-grid.png');
}

.base {
    margin-top: 20px;
    padding: 20px 50px;
    background-color: #F6F6F6;
    border-radius: 10px;
    border: 5px solid #A2D5C6;
    position: relative;
}
.title {
    color: black;
    text-align: center;
    margin: 10px;
    font-size: 1.6rem;
}
h2 {
    font-size: 1rem;
}

#start {
    z-index: 9;
    padding:5px 20px;
    border-radius: 10px;
    background-color: #F6F6F6;
    border-color: #A2D5C6;
    font-size: 2rem;
    transition: transform 0.1s ease-in-out;
    margin: 20px auto;
    display: block;
}
#start:active {
     transform: scale(0.8);
}

#exectionBox {
    display: flex;
}

#timer {
    
    font-family: "Roboto Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;

    position: absolute;
    top: 38%;
    left: 35%;
    font-size: 40px;
    text-align: center;
}