@font-face {
  font-family: arcadeFont;
  src: url(./assets/Silkscreen-Regular.ttf);
}

* {
  font-family: arcadeFont;
}

body, html {
  height: 100%;
  margin: 0;
}

.bg {
    background-image: url('./assets/dungeon wall.gif');
    height: 100%;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

h1 {
  color: #6ac410;
  font-size: 4vw;
  background-color: black;
  position: absolute;
  text-align: center;
  top: 10%;
  margin: 0 auto;
  padding: 0px 15px;
}

#game-container {
    width: 60%;
    margin: 0 auto;
    text-align: center;
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  #command-input {
    position: absolute;
    top: 40%;
    left: 35%;
    width: 30%;
    height: 7%;
    font-size: 2.5vw;
    background-color: black;
    color: #6ac410;
  }

  ::placeholder {
    color: #808080;
    background-color: black;
    font-size: 1.75vw;
    text-align: center;
    z-index: 1;
  }

  #command-log {
    width: 50%;
    height: 40%;
    overflow-y: scroll;
    background-color: black;
    position: absolute;
    top: auto;
    left: 25%;
    bottom: 0%;
    color: #6ac410;
    font-size: 2vw;
  }

  ::-webkit-scrollbar {
    display: none;
  }