body {
  overflow: hidden; /* Hide scrollbars */
    background-color: #d4cab8;
    color: #110c36;
    font-family: 'Share Tech Mono', monospace;
    margin: 0;
    padding: 0;
    font-size: 3em;
}
#interface {
  flex-direction: column;
  display: flex;
  height: 90vh;
  width: 100vw;
  justify-content: space-evenly;
  align-items: center;

}
.stack {
    flex: 1;
    width: 90%;
    margin: 0.5em;
}
.window{
    flex: 5;
    width: 65%;
    margin: 0.5em;
    overflow-wrap: break-word;
    overflow:hidden;
    vertical-align: bottom;
}
.button {
    background: #110c36;
    color: #d4cab8;
    border-radius: 0 0 3em 0 ;
    text-decoration: none;
}
#overlay{
  display: block;
  position: fixed; /* could also be absolute */ 
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 100;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: auto;
}
#overlay img{
    width: 200px;
    min-width: 100%;
    min-height: 100%;
    opacity: 0.6;
}
.money {
    text-decoration: underline overline line-through;
}
#output {
    position: relative;
}
#content {
    position: absolute;
    bottom: 0;
}
.waiting{
    visibility: hidden;
}
.inactive{
    background-color: rgba(17,12,54,0.3)
}
.dataEntryRow{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: .2em;
}
.dataEntryRow .button {
    padding: 0 1em 0 0;
}
.field {
    border: 2px solid #110c36;
    border-radius: 0 0 3em 0 ;
    background-color: rgba(17,12,54,0.3);
    margin-bottom: 0;
}
.activeField {
    border-width: 6px !important;
    background-color: rgba(17,12,54,0);
}
#messageNotification {
    text-decoration: none;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #b14c16;
    color: #d4cab8;
    padding: 1em;
}