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



#mapAndUi {
    display: flex;
    /* flex-direction: column;
    justify-content: center;
    align-items: center; */
}

#map-container {
    /* width: 100vw;
    height:100vh;
    position: relative; */
    background-color: white;
}

#right-container {
  padding: 20px;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
}



#prefTextButton{
    /* display: flex;
    align-items: center; */
    width: auto;
    margin-top: 20px;
    padding: 5px 10px;
    background-color: white;
    border-radius: 10px;
    border: 5px solid #A2D5C6;
    width: 7rem;
}


#answerTextBox {
  font-size: 2rem;
  border-radius: 10px;
  /* text-align: center; */
  z-index: 2;
  overflow-x: auto;

    width: 100%;
}


@media screen and (max-width: 600px) {
#mapAndUi {
    display: flex;
    flex-direction: column;
    /* justify-content: center;
    align-items: center; */
}


}




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