:root {
  --theme-color-primary: white;
  --theme-color-secondary: #222;
  --theme-color-tertiary: #aa4a4b;
  --theme-color-highlight: cyan;
  --theme-color-highlightBg: #333;
  --theme-color-tableRow1: #111;
  --theme-color-tableRow2: #000;
  --theme-color-visited: grey;
  --theme-background: #000;
}

* {
  padding: 0;
  margin: 0;
  border: 0;
  list-style: none;
  text-decoration: none;
  outline: none;
  box-sizing: border-box;
}

.container {
  width: 100vw;
  min-height: 100vh;
}

.flex {
  display: flex;
  flex-direction: row !important;
}

.column {
  display: flex;
  flex-direction: column !important;
}

.center {
  justify-content: center;
  align-items: center;
}

.grow {
  flex-grow: 1;
}

.wrap {
  flex-wrap: wrap;
}

button {
  background: var(--theme-color-secondary);
  color: var(--theme-color-primary);
  border: 1px solid var(--theme-color-primary);
  padding: 2px;
}
button:hover {
  color: var(--theme-color-highlight);
  border-color: var(--theme-color-highlight);
  background: var(--theme-color-highlightBg);
}

input {
  background: #222;
  font-size: 20px;
  width: 100px;
  color: white;
}

.dropContainer {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
}

/*# sourceMappingURL=style.css.map */
