/*!*************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/index.scss ***!
  \*************************************************************************************************************************************/
.title-header {
  text-align: center;
  color: red;
  font-family: "Creepster", cursive;
  font-size: 48px;
  padding: 50px;
}

body {
  background: black;
}

.main {
  width: 1280px;
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 auto;
  font-family: "VT323", monospace;
  font-size: 32px;
  align-items: center;
}
.main-body {
  display: flex;
  justify-content: space-between;
}

#menu,
#nav-links {
  background: red;
  border: 2px solid grey;
  width: 200px;
  display:none;
}

#nav-links img {
  height: 32px;
  width: 32px;
}

#main-text {
  background: blueviolet;
  height: 100px;
  padding: 20px;
  border: 2px solid grey;
  /* display:none; */
 
}

#main-text p {
  /* white-space: pre-wrap; */
  text-align: center;
}

.menu-list {
  text-align: center;
}

.menu-list li:hover {
  cursor: pointer;
  background-color: lightgrey;
}

.menu-list li:first-child {
  border-top: 3px dashed black;
}

#game-container {
  position: relative;
  height: 400px;
  width: 800px;
}

#game-box {
  left: 0;
  top: 0;
  z-index: 0;
  position: absolute;
}

#game-box-2 {
  left: 0;
  top: 0;
  z-index: 1;
  position: absolute;
}

#player-box {
  left: 0;
  top: 0;
  z-index: 2;
  position: absolute;
}

#puzzle {
  left: 0;
  top: 0;
  z-index: 3;
  position: absolute;
  background: grey;
  display: flex;
  width: 800px;
  height: 400px;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border: 2px solid black;

  /* display: none; */
}

.letter-input {
  border-radius: 50%;
  background: green;
  padding: 10px;
  height: 40px;
  width: 40px;
  text-align: center;
  border: 2px solid black;
}