* {
  font-family: "fixedsys_excelsior_3.01Rg", monospace;
  color: lavenderblush;
}

:root {
	--invader-bg: purple;
	--shooter-bg: lavenderblush;
	--laser-bg: firebrick;
	--boom-bg: crimson;
}
.view {
  height: 100%;
  width: 100%;
}
.invader > .view {
  background: var(--invader-bg);
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  outline: 0.4px solid purple;
  height: 93%;
  width: 93%;
}

.shooter > .view{
  background: var(--shooter-bg);
  background-size: cover;
  background-position: center;
  height: 94%;
  width: 94%;
  outline: 0.5px solid lavenderblush;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.laser > .view {
  background: var(--laser-bg);
  background-size: cover;
  background-position: center;
  outline: 0.5px solid orange;
  width: 58%;
  height: 94%;
  border-radius: 8px;
}

.boom > .view {
  background: var(--boom-bg);
  background-size: cover;
  background-position: center;
  outline: 0.7px solid crimson;
  height: 94%;
  width: 94%;
  border-radius: 8px;
}

a.btn {
  padding: 16px;
  border: 1px dotted #bc3248;
  background: none;
  color: lavenderblush;
  user-select: none;
}

input {
  width: 100%;
  padding: 16px;
  background-color: transparent;
  border: 1px solid lavenderblush;
  box-sizing: border-box;
}

#error-message {
  color: crimson;
}

.grid {
  width: 300px;
  height: 300px;
  border: 1px solid black;
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

.grid > div {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  position: realitive;
}

.mainGame {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
}

div#codeArea {
  display: flex;
  gap: 1em;
}