:root{
  /* --bg-color: #074079; */
  --bg-color: #2b2a33;
}
body{
    background-color: var(--bg-color);
    color:white;
    font-family:Courier;
    font-size: 2em;
    margin: 0px;
}
.container{
  display: flex;
  justify-content: flex-start;
  height: 100vh;
  align-items: center;
}
.clueList{
  list-style-type: none;
}
.clueWrapper{
  flex-grow: 1;
  flex-wrap: wrap;
  display: flex;
  align-items: center;
}
.clues{
    flex-grow: 1;
}
ol{
  overflow-y: auto;
  max-height: calc(40vh - 2em);
}
li{
  cursor: pointer;
  border: 2px solid transparent;
}

#canvasWrapper{
  text-align: center;
  flex-grow: 1;
  position: relative;
  min-width: 500px;
}

#mycanvas{
  width: 80%;
  height: auto;
}

/* ===============legend=============== */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: var(--bg-color);
  color:white;
  margin: auto;
  text-align: center;
  padding: 20px;
  box-shadow: 0 24px 38px 3px rgba(0,0,0,0.14), 0 9px 46px 8px rgba(0,0,0,0.12), 0 11px 15px -7px rgba(0,0,0,0.2);
  width: 80%;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

#btnLegend{
  position: fixed;
  top:15px;
  right:15px;
  font-size: 1.2em;
  width: 1.2em;
}
.navbar:hover{
  cursor:pointer;
  color: #ffab58 !important;
  text-decoration: underline !important;
}
.navbar{
  font-size: 20px;
  background-color: none;
}

/* ===============statusBar div=============== */
#status{
  position: absolute;
  bottom:0px;
  left: 0px;
  display: none;
}