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

#map-container {
    width: 100%;
    height: 100%;
    position: relative;
}

#reset {
    margin: 20px;
    padding: 5px 10px;
    background-color: white;
    border-radius: 10px;
    border: 5px solid #A2D5C6;
}
#reset:active, #prefTextButton:active {
    transform: scale(0.8);
}

#ruby_label {
    margin: 20px;
    padding: 5px 10px;
    background-color: white;
    border-radius: 10px;
    border: 5px solid #A2D5C6;
}

#prefTextButton {
    position: absolute;
    top: 87%;
    left: 40%;
    padding: 5px 10px;
    background-color: white;
    border-radius: 10px;
    border: 5px solid #A2D5C6;
}