
.pagetitle {
	margin-top: 40px;
}

@font-face {
  font-family: 'pixel';
  src: url('/static/pixel.woff2');
}

.pixel-text {
	font-family: 'pixel';
}

.board{
	display: grid;
	justify-content: center;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;

	margin: 40px;
	width: 830px;
	height: 400px;
	background: #061707;
	color: #4dff8d;
  border: solid 10px;
  border-color: #000;
}

.boardtitle{
  margin-top: 20px;
  justify-self: center;
	grid-area: 1 / 1 / 2 / 4;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-shadow: 1px 1px 20px #4dff8d, 1px 1px 20px #4dff8d;
}

.boardcentersub{
  justify-self: center;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, 0fr);
  justify-content: center;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  
}

.glow {
  text-shadow: 1px 1px 20px #4dff8d, 1px 1px 20px #4dff8d;
}

.center {
  justify-self: center;
}

.value {
  color: #0d7f3b;
}

.boardinput {
  background-color: transparent;
  border: none;
  text-align: center;
  font-size: 18px;
}

.boardinput:focus {
  outline: none;
  border: none;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
    display: none;
}

.unlocks
{
  display: flex;
  flex-wrap: wrap;
}

.unlocks-pad{
  padding-right: 20px;
}

.banner-long {
  background-color: black;
  margin: 20px;
  padding: 5px;
}

.rainbow-text {
  font-size: 2rem;
  font-weight: bold;
  background: linear-gradient(
    90deg,
    red,
    orange,
    yellow,
    green,
    cyan,
    blue,
    violet
  );
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rainbowMove 5s linear infinite;
  background-size: 400% 100%;
}
@keyframes rainbowMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
.titleContainer {
  display: flex;
  justify-content: space-between;
}
.languageSwitch{
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.flex-col {
  display: flex;
  flex-direction: column;
}