::placeholder {
  color: #009500;
  opacity: 1; /* Firefox */
}
* {
    scrollbar-width: thin; /* Options: auto | thin */
}
body, html {
  margin:0;
  padding:0;
  background-color:black;
  color:lightgray;
  text-align:center;
}
h2{
  font-family: "Itim", serif;
  font-size:42px;
}
h3 {
  font-family: "Playwrite DE Grund", sans-serif;
  font-size:24px;
}
h4 {
  font-family: "Playwrite DE Grund", sans-serif;
  font-size:18px;
  text-align:left;
}
p, span {
  font-family: "Playwrite DE Grund", sans-serif;
  font-size:18px;
  margin: 0;
  text-align:justify;
}
ul {
  font-family: "Playwrite DE Grund", sans-serif;
  text-align: left;
  font-size:18px;
  padding-left: 10px;
}
a {
  color:goldenrod;
}
a:visited {
  color:hotpink;
}
input {
	background-color: rgba(0,0,0,0);
	color: #009500;
	padding: 10px;
    box-sizing: border-box;
    clear: both;
    display: block;
    margin-bottom: 4px;
    border: none;
    font-family: 'Courier new';
    font-size: 18px;
    outline:none;
    flex: 1;
    border-bottom: 1px solid;
}
button {
  border:none;
  font-size:12px;
  cursor:pointer;
  background-color: teal;
  color: ghostwhite;
  font-family: "Playwrite DE Grund", sans-serif;
  padding: 6px;
  border-radius: 8px;
  transition: scale 0.3s;
  margin: 0 auto;
  width: 100%;
  max-width: 150px;
}
button:hover {
  scale: 1.15;
}
button:active {
  transform: translateY(4px);
}
.caps {
  font-variant: small-caps;
}
.flexer {
  display: flex;
  justify-content: space-between;
}
.flexer div {
  flex-direction: column;
  align-items: center;
}
.introTitle {
  display:none;
  margin: 10px;
}
.mainTxt {
  margin-top: 6px;
  overflow: auto;
  color: #009500;
  padding: 0 10px;
}
.separator {
  margin: 20px auto;
  width:50%;
  height: 2px;
  border-bottom: 1px solid;
  border-radius: 10px;
}
#container {
  width:60%;
  margin:0 auto;
  padding: 8px;
  box-sizing:border-box;
}
#intro {
  margin-bottom: 35px;
}
#intro p {
  font-size: 15px;
  font-family: sans-serif;
}
#buttonDiv {
  opacity: 0;
}
#howToPlay {
  display:none;
  border-radius: 12px;
  border: 2px solid teal;
  padding: 20px;
}
#howToPlay p {
  margin-bottom: 30px;
  font-size: 15px;
  font-family: sans-serif;
}
#commandBox {
  position: absolute;
  box-sizing:border-box;
  bottom: 0;
  width:60%;
  align-items: center;
  margin-bottom: 12px;
}
#commandButton{
  background-color:darkgreen;
  font-size:14px;
  padding: 4px 10px;
  border-radius: 6px;
}
#menuBrg {
  font-size: 2em;
  position: fixed;
  left: 10px;
  cursor:pointer;
  transition: scale 0.2s;
  display:none;
}
#menuBrg:hover {
  scale:1.3;
}
#menuBrg:active {
  transform: translateY(4px);
}
#gameInterface {
  display:none;
}
#gameArea {
  padding-bottom: 5px;
  height: 85vh;
  scroll-behavior: smooth;
}
#fileLoad {
  display:flex;
  justify-content: center;
  height:0;
  transition: height 0.3s;
}
#file_input {
  flex:0.3;
  display:none;
  color:ghostwhite;
  font-size:16px;
}

@media only screen and (max-width:1300px) {
  #container, #commandBox {
    width: 75%;
  }
  button {
    max-width: 100px;
  }
}

@media only screen and (max-width: 600px) {
  input {
    font-family:serif;
  }
  .flexer {
    gap: 20px;
    flex-direction: column;
  }
  #container, #commandBox {
    width: 100%;
    padding:0;
  }
}

