/*!*************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/client/styles.css ***!
  \*************************************************************************/
:root {
	--back-col: black;
	--front-col: white;
}
body {
  font-family: "Franklin Gothic Medium", "Arial Narrow", sans-serif;
  filter: saturate(0.015);
  display: flex;
  font-size: larger;
  flex-direction: column;
  background-color: var(--back-col);
	color: var(--front-col);
  margin: 0;
  height: 100vh;
  width: 100vw;
  justify-content: center;
  align-items: center;
}

.select-id {
  display: none;
}

.next-prev-ctn {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  justify-items: space-around;
  flex-direction: row;
}
.but-ctn {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
}

button {
  font-size: larger;
  border-radius: 1rem;
	background-color: var(--back-col);
	color: var(--front-col);
  padding: 0.4rem;
  border: 0.05rem solid var(--front-col);
}

#wait {
  background-color: unset;
  border: 0;
}

.log-ctn {
  width: 100%;
  height: 3rem;
  font-style: italic;
  font-size: smaller;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  position: relative;
  bottom: 0;
}

