body {
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.87);
  background-color: rgba(40, 40, 45, 1);

  font-family: "Tiny5", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}



@font-face {
font-family: "Tiny5";
src: url("./assets/TinyUnicode.ttf");
}

#game-container > canvas {
  border-radius: 10px;
  overflow: hidden;
}



/* // 574368
// 8488d3
// cfd3c1
// f8c868
// 8ddb34
// 69cfef
// d1b3ff
// ff8e65 */

#app {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

#menu > h1 {
  font-weight: 500;
  text-align: center;
  font-size: 32px;
  /* line-height: 2px; */
  color: #fff;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
}

#menu > h2 {
  font-weight: 500;
  text-align: center;
  font-size: 8px;
  font-size: 10px;
  /* font-size: 40px; */
  color: #fff;
  line-height: 2px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
  margin-top: -12px;
  margin-bottom: 40px;
}

#menu > h3 {
  font-weight: 500;
  text-align: center;
  font-size: 14px;
  /* font-size: 40px; */
  color: #fff;
  line-height: 2px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
  /* margin-top: 12px; */
}


.high-score {
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}

#container {
  text-align: center;
  /* width: 500px; */
  border-radius: 10px;
  /* background-color: #574368; */
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  padding: 24px;
  height: 100%;
}

#menu {
  height: 100%;
  margin-top: 72px;
}

[data-behavior="start-game"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

button {
  font-family: "Tiny5", sans-serif;
  width: 100%;

  border: none;
  background-color: transparent;
  border-radius: 3px;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 8px 30px;
  font-size: 30px;
  line-height: 28px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  padding-bottom: 14px;

  border: 1px solid transparent;
}

button:hover {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}

button {
  transition: all 0.1s ease-in-out;
}


.checkbox {
  color: black;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.checkbox label {
  display: block;
  font-size: 32px;
  margin-top: -6px;
  padding-left: 8px;
}

.bottom {
  flex: 1;
  display: flex;
  justify-content: right;
  flex-direction: column;
  margin-top: 32px;

}

.small-button {
  font-size: 20px;
  padding: 0px 8px;
  padding-bottom: 3px;
  width: fit-content;
  background-color: #fff;
  color: #000;
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.5);
}
