* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  overflow: hidden;
  background: #222;
}

body, input, a {
  color: #fff;
  font: 14px 'PixelText';
}

img {
  display: block;
}

#system-message {
  background: #0e0c14;
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 32px;
}

#system-message.error {
  background: #652229;
}

#system-message.error img {
  display: none;
}

#system-message .status {
  font-weight: bold;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  white-space: pre;
}

#invalid-screen {
  position: fixed;
  inset: 0;
  background: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10vh;
  font-weight: bold;
  line-height: 14pt;
  letter-spacing: 1px;
  text-align: center;
  z-index: 9999;
}

.Toastify__toast {
  background-color: rgba(0, 0, 0, 0.5);
  white-space: pre-line;
}

.transactions-toast .Toastify__toast {
  font-size: 12px;
}
