body {
  background: black;
  color: #94e448;
  font-family: "VT323";
  user-select: none;
  overflow: auto;
  text-align: center;
  margin: 5px;
}
* {
  margin: 0px 0px;
  font-weight: 200;
}
.center {
  text-align: center;
  border: 1px #94e448 solid;
  padding: 10px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  margin: auto;
  position: relative;
}
.game-space {
  display: flex;
  flex-wrap: wrap;
  height: 500px;
  width: 100%;
  margin-top: 2%;
}
.grid_part {
  width: 10%;
  height: 50px;
  font-size: 40px;
}
.logo {
  transform: none;
  cursor: pointer;
}
.logo:hover {
  transform: scale(1.1);
}
.logo-container {
  display: flex;
  justify-content: space-between;
  max-width: 500px;
  margin: auto;
  align-items: center;
  margin-bottom: 5px;
}
.social-media-container {
  display: flex;
  gap: 10px;
}
.btn {
  border-radius: 0.5rem;
  text-decoration: none;
  text-align: end;
  width: 100%;
  color: white;
  i {
    padding-right: 0.3em;
  }
}
.modal-window {
  & > div {
    border-radius: 1rem;
  }
}

.modal-window div:not(:last-of-type) {
  margin-bottom: 15px;
}
.modal-window {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999999999;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  &:target {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  & > div {
    width: 300px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 2em;
    background: black;
    border: 1px solid #94e448;
  }
  header {
    font-weight: bold;
  }
  h1 {
    font-size: 150%;
    margin: 0 0 15px;
  }
}
.modal-close {
  color: #aaa;
  line-height: 50px;
  font-size: 80%;
  position: absolute;
  right: 20px;
  text-align: center;
  top: 0;
  text-decoration: none;
  font-size: 30px;
}
.counter-container, .copy-text {
  /* display: flex;
  justify-content: space-between; */
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  padding: 8px 8px;
  font-size: 30px;
  color: black;
  background-color: #94e448;
  margin-bottom: 10px;
}
.restart-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  cursor: pointer;
  color: black;
  background-color: #94e448;
}
.start-btn {
  cursor: pointer;
  color: black;
  background-color: #94e448;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  width: 40%;
  height: 80px;
  border-radius: 5%;
  font-size: larger;
  z-index: 10000000;
  font-family: "VT323";
  font-weight: bold;
}
.btn-container {
  width: 100%;
}

h3 a{
  color: #94e448;
  max-width: 500px;
}

#outer-game-container{
  margin: auto;
  max-width: 500px
}

#iq-levels, #coming-soon {
  border: 1px #94e448 solid;
  border-radius: 10px;
  padding: 13px;
  margin: 15px;
}

#inner-div{
  text-align: left;
}

.lock-screen {
  overflow: hidden;
}
