*::-webkit-scrollbar {
  background-color: #808080;
}

*::-webkit-scrollbar-button {
  background-color: #808080;
  border-left: 2px solid white; border-right: 2px solid black; border-top: 2px solid white; border-bottom: 2px solid black;
}

*::-webkit-scrollbar-button:active {
  background-color: #707070;
  border-left: 2px solid black; border-right: 2px solid white; border-top: 2px solid black; border-bottom: 2px solid white;
}

*::-webkit-scrollbar-thumb {
  background-color: #808080;
  border-left: 2px solid white; border-right: 2px solid black; border-top: 2px solid white; border-bottom: 2px solid black;
}

*::-webkit-scrollbar-thumb:active {
  background-color: #707070;
  border-left: 2px solid black; border-right: 2px solid white; border-top: 2px solid black; border-bottom: 2px solid white;
}

body {
  background-image: url(imgs/backgroundGradient.png);
  background-size: cover;
  overflow: hidden;
}

.retroBox {
  background-color: #808080;
  border-left: 2px solid white; border-right: 2px solid black; border-top: 2px solid white; border-bottom: 2px solid black;
  user-select: none;
}

.retroButton {
  background-color: #808080;
  border-left: 2px solid white; border-right: 2px solid black; border-top: 2px solid white; border-bottom: 2px solid black;
  font-family: 'Courier New', Courier, monospace;
  user-select: none;
}

.retroButton:hover {
  background-color: #909090;
  border-left: 2px solid black; border-right: 2px solid white; border-top: 2px solid black; border-bottom: 2px solid white;
  cursor: pointer;
}

.retroButton:active {
  background-color: #707070;
}

#bottomBar {
  margin: 0%;
  width: 100%;
  height: 50px;
  position: fixed;
  bottom: 0px;
  left: 0px;
}

#startButton {
  position: absolute;
  display: flex; justify-items: end; align-items: center;
  width: fit-content; padding: 5px;
  height: 40px;
  left: 5px;
  top: 5px;
  font-size: 150%;
  font-weight: 700;
}

#icons {
  display: flex; flex-direction: row; justify-content: flex-start; flex-wrap: wrap;
  margin: 0;
  width: 25%;
  height: 100%;
  user-select: none;
}

.icon {
  padding: 2px;
  display: flex; flex-direction:column; justify-content: center; align-items: center;
  height: 150px; width: 100px;
}

.icon p {
  font-family: 'Courier New', Courier, monospace; font-size: 75%; text-wrap: stable;
  text-align: center;
}

.icon:hover {
  cursor: pointer;
  padding: 1px;
  border: black; border-width: 1px; border-style: dashed;
}

.window {
  display: none; font-family: 'Courier New', Courier, monospace;
  position: absolute; display: flexbox; flex-direction: column;
  width: 500px; height: 400px; top: 100px; left: 100px;
  z-index: 10;
  background-image: url(imgs/backgroundGradient.png);
  border-color: black; border-width: 1px; border-style: solid; box-shadow: 5px 5px 10px purple;
  top:50%; left:50%; transform: translate(-50%,-50%);
}

.boxContent {
  position: absolute; top: 20px; z-index: -1;
  overflow-y: scroll; text-wrap: wrap;
}

.boxHeader {
  font-weight: bold;
  position: absolute; top: 0; left: 0; z-index: -1;
  cursor: move;
}