* {
  margin: 0px;
  padding: 0px;
  font-family: turnip, serif;
  font-weight: 400;
  font-style: normal;
  color: white;
}

html{
  background-color: rgb(16, 16, 16);
}

#svgObj {
  width: 400px;
  height: 400px;
  /* visibility: hidden; */
}

body{
  font-family: "Roboto", sans-serif;
  width: 100%;
}

h1{
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin-top: 0.5rem;
}

main{
  width: 960px;
  margin: 0 auto;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

svg{
  border: 1px solid rgb(0, 0, 0);
}

#gameMasterContainer{
  width: 960px;
  height: auto;
}

#gameScreen{
  height: 540px;
  position: relative;

}

#UIContainer{
  display: flex;
  background-color: #101414;
  border: 5px solid #000000;
  height: 90px;
  justify-content: space-between;
}

#searchButton{
  background-color: #282323;
  border: 3px solid #777777;
  /* height: 4rem; */
  padding: 1rem;
  margin: 1% 0;
  font-size: 1rem;

}

#searchButton:hover{
  background-color: #463e3e;
}

#useMouseButton{
  background-color: #282323;
  border: 3px solid #777777;
  /* height: 4rem; */
  padding: 1rem;
  cursor: pointer;
  margin: 1% 0;
  font-size: 1rem;
}

#useMouseButton:hover{
  background-color: #463e3e;
}

#searchButton:hover{
  cursor: pointer;
}

#buttonContainer{
  display: flex;
  align-items: center;
}

#mouseButtonContainer{
  display: none;
  align-items: center;
}

.buttonContainerSub{
  display: flex;
  margin-right: 20px;
  align-items: center;
}

.buttonContainerSub > p{
  height: 100%;
  font-size: 1.5rem;
  margin-left: 20px;
}

.microBitBtn{
  height: 50px;
  width: 50px;
  font-size: 2.5rem;
  background-color: #282323;
  border: 3px solid #777777;
  border-radius: 100px;

  box-shadow: 2px 6px 2px #282828;
  display: flex;
  justify-content: center;
  align-items: center;
}

#mouseButtonScroll{
  font-size: 1.3rem;
}

#mouseButtonLeftClick{
  font-size: 1.3rem;
}

fieldset{
  border: none;
}

ul{
  list-style-type: none;
}

#loadingScreen{
  width: 960px;
  height: 540px;
  background-color: black;
  position: absolute;
  top: 0;
  opacity: 0;
}

#instructionsScreen{
  position: absolute;
  /* z-index: ; */
}

#endScreen{
  height: 540px;
  width: 960px;
  background-color: black;
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#endScreen >h1{
  margin: 24px 0;
}

object{
  pointer-events: none;
  user-select: none;
  outline: none;
}


/* ! Remember to target the SVG drawing elements not the group for properties such as fill */
/* #s1Tint{
  clip-path: 50%;
} */

/**********    OPENING SCREEN      ***************/

#openingScreen{
  background-color: black;
  width: 960px;
  height: 100vh;
  position: absolute;
  z-index: 9999;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#openingScreen > h1{
  justify-content: space-between;
  margin-bottom: 56px;
  font-size: 4rem;
}

#openingScreen > p {
  width: 50%;
  margin: 32px auto 0 auto;
  text-align: center;

}


#openingScreenBtnContainer{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

#playBtn{
  /* width: 30%; */
  /* margin:  50px auto; */
  background-color: #282323;
  border: 3px solid #777777;
  font-size: 3rem;
  padding: 1% 5%;
  cursor: pointer;
}

#instructionsBtn{
  /* width: 300px; */
  /* margin:  50px auto; */
  background-color: #282323;
  border: 3px solid #777777;
  font-size: 1.4rem;
  padding: 1% 2%;
  cursor: pointer;
}

#instructionsBtn:hover{
  background-color: #463e3e;
}

#playBtn:hover{
  background-color: #463e3e;
}

#closeInstructions{
  opacity: 0;
  visibility: hidden;
  width: 150px;
  margin:  50px auto;
  background-color: #282323;
  border: 3px solid #777777;  font-size: 2rem;
  padding: 20px;
  cursor: pointer;
  position: absolute;
  right: 80px;
  bottom: 0;
  z-index: 9999999999;
}

#closeInstructions:hover{
  background-color: #463e3e;
}

#openingMessage{
  background-color: black;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#openingMessage > p{
  width: 60%;
  font-size: 1.3rem;
}

.openingP1{
  display: inline;
}

.openingP1_1{
  display: inline;
}

/**********  Talking Head   *********/
#talkingHead{
  position: absolute;
  background-color: #3B352E;
  border: 6px solid #221D1B;
  width: 960px;
  height: 100px;
  margin: 0 auto;
  bottom: 0px;
  box-sizing: border-box;
}

#talkingHeadText{
  font-size: 1.5rem;
  padding: 10px;
}

#choiceMenu{
  z-index: 999;
  position: absolute;
  width: 180px;
  height: fit-content;
  background-color: #3B352E;
  border: 6px solid #221D1B;
  right: 0;
  bottom: 100px;
}

#choiceMenuUl > li {
  padding: 15px;
  margin: 10px;
  font-size: 24px;
}


.choiceSelected{
  background-color: #5B5249;
}

/* #choiceMenuUl > li:hover{
  background-color: #404040;

} */

/*************    SCENES    ************/
#s2{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#s2_1{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#s2_2{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#s2_3{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#s3{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#s4{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}