@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@200;300;400;900&display=swap');

html, body
{
    font-family: 'Inconsolata', monospace;
    background:#743520;
    margin:0;
    padding:0;
    overflow: hidden;
    color: transparent;
    width: 100vw;
    height: 100vh;
}
* {
  user-select: none;
}

.word {
  position: absolute;
  cursor: grab;
  font-size: 30px;
  color: #ffeb3b;
}
.word.highlighted {
  font-weight: bold;
  color: black;
}

a {
  text-decoration: none;
  color: black;
  display: block;
  padding: 1rem;
}

#center_img {
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    margin:auto;
}

#center_div {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 480px;
    height: 480px;
}

#container {
    margin: 20px;
    width: 480px;
    height: 480px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
