.help {
  top: 10px;
  left: 10px;
  position: absolute;
  z-index: 1;
  display: flex;
  height: 25px;
  background-color: black;
  width: 80px;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: monospace;
  border: white 1px solid;
}
.help:hover {
  cursor: pointer;
}
* {
  padding: 0;
  margin: 0;
}
.myHelp {
  display: none;
  top: 0;
  z-index: 3;
  position: absolute;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  backdrop-filter: blur(8px);
  color: white;
  font-family: monospace;
}
.coordinates {
  position: absolute;
  top: 0;
  left: 0;
  color: white;
  font-family: monospace;
  user-select: none;
  text-wrap: nowrap;
  width: 200px;
  overflow: hidden;
  cursor: default;
}
body,
html {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: black;
}

.restricted {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  backdrop-filter: blur(8px);
  text-align: center;
  font-family: monospace;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 17px;
  border: none;
  cursor: pointer;
  line-height: 1.5;
  text-align: center;
}
.madeBy {
  background-color: black;
  right: 7px;
  z-index: 3;
  bottom: 7px;
  position: absolute;
  color: white;
  text-decoration: underline;
  font-family: monospace;
}
.firstSentence {
  font-size: 16px;
  max-width: 500px;
}
.helpHead {
  align-self: flex-start;
  font-size: 25px;
}
.myHelpSub {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 16px;
  padding-top: 0px;
}
.optionSentence {
  font-size: 16px;
}
.closeHelp {
  font-size: 20px;
  border: 1px solid white;
  display: flex;
  height: 30px;
  width: 150px;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
}
