/* src/ui/GameMenu/index.css */
.game-menu {
  padding-top: 2rem;
}
.game-start-button {
  background-color: blue;
  color: white;
  border-radius: 0.5rem;
  padding: 1rem 2rem;
  min-width: 30%;
  text-align: center;
  font-size: 1.5rem;
  cursor: pointer;
  user-select: none;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.3);
  font-weight: bold;
}
.game-status-text {
  font-size: 1.2rem;
}

/* src/ui/LargeLogo/index.css */
.large-logo {
  background-color: white;
  border-radius: 50%;
  width: 10rem;
  max-width: 10rem;
  height: 10rem;
  max-height: 10rem;
  padding: 2rem;
  box-sizing: border-box;
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.2);
}
.large-logo img {
  width: 100%;
  height: 100%;
  display: block;
}

/* src/ui/ControlInfo/index.css */
.key-info {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.key-info__key {
  padding: 0.5rem 0.75rem;
  border-radius: 0.2rem;
  background-color: #fff;
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.2);
  line-height: 1em;
}
.key-info__text {
  margin-left: 1rem;
}
.key-info-grid {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 1rem;
  row-gap: 0.5rem;
}

/* src/ui/App/index.css */
.game-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.game-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.app {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  width: 100%;
}
.app .header {
  position: relative;
  z-index: 100;
}

/* src/ui/Header/index.css */
.header {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 1rem;
  height: 3.5rem;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0.2rem 0.2rem rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  transition: margin-top 0.5s;
}
.header--hidden {
  margin-top: -3.5rem;
}
.header-logo {
  height: 2.5rem;
  width: 2.5rem;
  display: block;
}
.header-name {
  font-size: 1.2rem;
  margin-left: 1rem;
}
.header-highscore {
  font-size: 1rem;
}
.header-action-button {
  background-color: blue;
  color: white;
  border-radius: 0.35rem;
  padding: 0.4rem 1rem;
  font-size: 1rem;
  cursor: pointer;
  user-select: none;
  margin-left: 1rem;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.3);
}

/* src/ui/GameOverlay/index.css */
.go-status-bar {
  border: 1px solid #333;
  min-width: 8rem;
  width: 100%;
  height: 1.5rem;
  border-radius: 0.25rem;
  overflow: hidden;
  background-color: #fff8;
  box-sizing: border-box;
}
.go-status-text {
  color: black;
  width: 100%;
}
.gameoverlay {
  width: 100%;
  height: 100%;
  position: relative;
}
.gameoverlay--paused {
  background-color: rgba(0, 0, 0, 0.3);
}
.gameoverlay-paused-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 3rem;
  color: #222;
  background-color: rgba(0, 0, 0, 0.3);
  font-weight: bold;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
}
.go-container-ver {
  padding: 0.5rem;
  gap: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.go-container-hor {
  padding: 0.5rem;
  gap: 0.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.go-icon-button {
  cursor: pointer;
  user-select: none;
}
.go-icon-button svg {
  display: block;
  height: 2rem;
  width: 2rem;
  color: gray;
}

/* src/index.css */
body {
  margin: 0;
  overflow: hidden;
  font-family:
    "Segoe UI",
    Tahoma,
    Geneva,
    Verdana,
    sans-serif;
}
#root {
  width: 100vw;
  height: 100vh;
}
.centered-page {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #ddd;
}
.height-spacer--large {
  height: 2rem;
}
.flex-spacer {
  flex: 1;
}
html {
  font-size: 14px;
}
@media only screen and (max-width: 900px) {
  html {
    font-size: 12px;
  }
}
@media only screen and (max-width: 600px) {
  html {
    font-size: 10px;
  }
}
