body {
  background-color: powderblue;
  color: black;
  font-family: DejaVu Sans Mono, monospace;
  text-align: left;
  display: flex;
  flex-direction: column;
  background-image: linear-gradient(0deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);
  margin: 0;
  min-height: 100vh;
}
.return {
  margin: 1vw;
}
.hidden {
  font-size: 0px;
}
.flex-filler-large {
  flex: 3 0 0
}
.flex-filler-medium {
  flex: 2 0 0
}
.flex-filler-small {
  flex: 1 0 0
}
.main-page {
  height: 800vh;
}
.fish-small-1 {
  margin-right: 10vw;
  margin-left: auto;
  margin-top: 10vh;
  background-image: url('fish_small_1.png');
  background-size: cover;
  opacity: 0.65;
  width: 15vw;
  height: 14vh;
  object-fit: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.fish-small-2 {
  margin-left: 10vw;
  margin-right: auto;
  margin-top: 10vh;
  background-image: url('fish_small_2.png');
  background-size: cover;
  opacity: 0.65;
  width: 15vw;
  height: 18vh;
  object-fit: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.fish-large-1 {
  margin-left: auto;
  margin-right: 10vw;
  margin-top: 10vh;
  background-image: url('fish_large_1.png');
  background-size: cover;
  opacity: 0.65;
  width: 24vw;
  height: 22vh;
  object-fit: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.fish-large-2 {
  margin-right: auto;
  margin-left: 10vw;
  margin-top: 10vh;
  background-image: url('fish_large_2.png');
  background-size: cover;
  opacity: 0.65;
  width: 30vw;
  height: 27vh;
  object-fit: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.fish-medium-1 {
  margin-left: auto;
  margin-right: 10vw;
  margin-top: 10vh;
  background-image: url('fish_medium_1.png');
  background-size: cover;
  opacity: 0.65;
  width: 25vw;
  height: 22vh;
  object-fit: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transform: scaleX(-1);
}
.fish-text {
  flex: 0 0 8vh;
}
.fish-text-inverted {
  flex: 0 0 8vh;
  transform: scaleX(-1);
  color: white;
}
.details-flex {
  flex: 1 1 1;
}
details {
 margin: 1vw;
 display: flex;
 flex-direction: column;
}
details > summary {
  background: white;
  border: 2px solid black;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-size: 16;
  width: 60vw;
}
details[open] > summary {
  border-bottom: 0px solid white;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
details > summary:hover {
  background-color: aliceblue; 
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); 
  font-weight: bold;
}
details > p {
  background: white;
  border: 2px solid black;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 60vw;
}
.review-body {
  background: white;
  border: 2px solid black;
  border-top: 0px solid white;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 60vw;
}
.side-review-image {
  position: fixed;
  top: 3.4vw;
  right: 2vw;
  background: white;
  border: 2px solid black;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-size: 16;
  width: 30vw;
  object-fit: cover;
}
.bytetures {
 background-color: black;
 color: lime;
 font-family: OCR A Std, monospace;
 text-align: left;
}
.bytetures input {
 background-color: black;
 color: lime;
 font-family: OCR A Std, monospace;
}
.bytetures button {
 background-color: black;
 color: lime;
 font-family: OCR A Std, monospace;
}
.homepage {
  font-size: 4em;
  text-align: center;
}
.homepage-container {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin: 0 auto;
  max-width: 1000px;
}
.homepage-entry {
  background-color: white;
  border: 4px solid black;
  border-radius: 16px;
  padding: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-size: 1.5em;
  text-align: center;
}
.homepage-entry:hover {
  background-color: aliceblue; 
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  font-weight: bold;
}
.blog-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0 auto;
  max-width: 1200px;
}
.blog-entry {
  background: white;
  border: 2px dashed black;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.blog-entry:hover {
  background-color: aliceblue; 
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.blog-entry p {
  margin: 0;
  font-size: 0.95em;
  color: #555;
}
.mechs-title {
  font-size: 2em;
  text-align: center;
}
.mechs-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 auto;
}
.mechs-entry {
  background-color: white;
  border: 4px solid black;
  border-radius: 16px;
  padding: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.mechs-entry:hover {
  background-color: aliceblue; 
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); 
}
.mechs-box-image {
  height: 350px;
  width: auto; 
  display: block;  
  margin-left: auto;
  margin-right: auto;
}
.mechs-box-text {
  margin-top: 10px;
  font-size: 16px;
  color: black; 
}
.game-main {
  height: 100vh;
  width: 100vw;
  background-color: black;
}
.pixel-sprite {
  height: 32px;
  width: 32px;
  position: relative;
  image-rendering: pixelated;
}
.pixel-sprite-player {
  height: 32px;
  width: 32px;
  top: 0px;
  left: 0px;
  position: absolute;
  image-rendering: pixelated;
}
.pixel-sprite-cursor {
  height: 32px;
  width: 32px;
  top: 0px;
  left: 0px;
  position: absolute;
  image-rendering: pixelated;
}
#tableArray {
  display: grid;
  grid-template-columns: repeat(auto-fill, 32px);
}
