body {
  margin: 0;
  overflow: hidden;
  font-family: "Comic Sans MS", "Comic Sans";
  background-color: #f4f4f4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  cursor: none;
  user-select: none;
  position: relative;
  transition: background-color 0.3s, color 0.3s;
}

body.dark-mode .page {
  background-color: #1d1d1d;
  color: white;
}

h1 {
  font-size: 3em;
  z-index: 10;
  user-select: none;
  text-align: center;
  position: relative;
  pointer-events: none;
}

#headlineImg {
  width: 400px;
  height: auto;
  display: block;
  margin-bottom: 0;
  user-select: none;
  z-index: 10;
  position: relative;
  pointer-events: none;
}

.stats {
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 2px;
  color: black;
  user-select: none;
  font-family: "Comic Sans MS", "Comic Sans";
  font-weight: 700;
  z-index: 4;
}

.applestats {
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 2px;
  color: black;
  text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white,
    1px 1px 0 white;
  user-select: none;
  font-family: "Comic Sans MS", "Comic Sans";
  font-weight: 700;
  z-index: 20;
  top: 15px;
  right: 15px;
  position: fixed;
}

#shopButton {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  width: 90px;
  height: 45px;
  user-select: none;
  position: relative;
  margin-top: 10px;
  margin-bottom: 0;
  flex-shrink: 0;
}

#shopButton img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s ease;
  user-select: none;
}

#shopButton:hover {
  transform: scale(1.2);
  transition: 0.2s;
  user-select: none;
}

#shopItems {
  max-height: 300px;
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: #888 #e0e0e0;
}

#shopItems::-webkit-scrollbar {
  width: 10px;
}

#shopItems::-webkit-scrollbar-track {
  background: #e0e0e0;
  border-radius: 8px;
}

#shopItems::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
}

#shopItems::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.giraffi-wrapper {
  display: inline-block;
  filter: drop-shadow(0 10px 12px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s ease;
}

.giraffi-wrapper:hover {
  transform: scale(1.08);
}

#squishy {
  width: 350px;
  height: auto;
  user-select: none;
  transition: opacity 0.8s ease, transform 0.1s ease;
  transform-origin: center bottom;
  margin: 35px;
}

.squished {
  transform: scale(0.95);
  transition: transform 0.1s ease;
  filter: hue-rotate(-35deg) saturate(180%);
}

#squishy.dead {
  filter: hue-rotate(-50deg) saturate(300%) brightness(0.6);
  transition: transform 2s ease, filter 2s ease;
}

#player {
  position: absolute;
  width: 80px;
  height: auto;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 100;
}

.popup {
  position: absolute;
  font-size: 2em;
  font-weight: bold;
  pointer-events: none;
  animation: riseFade 1s ease-out forwards;
  z-index: 1001;
  user-select: none;
}

@keyframes riseFade {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-50px);
  }
}

#comboMessage {
  position: fixed;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.5em;
  font-weight: bold;
  z-index: 1002;
  opacity: 0;
  transition: opacity 0.4s;
  user-select: none;
  text-shadow: 2px 2px 6px black;
  pointer-events: none;
}

#comboMultiplierPopup {
  position: fixed;
  top: 922px;
  right: 640px;
  font-size: 2em;
  color: red !important;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  transform: scale(1);
  z-index: 2000;
  pointer-events: none;
}

#bottomButtons {
  position: fixed;
  bottom: 12px;
  right: 12px;
  display: flex;
  gap: 12px;
  z-index: 20;
  user-select: none;
}

#bottomButtons button {
  font-size: 1.2em;
  padding: 20px 20px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  z-index: 20;
}

#resetButton {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  width: 90px;
  height: auto;
  position: relative;
  user-select: none;
  z-index: 1;
}

#resetButton img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
  user-select: none;
  z-index: 1;
}

#resetButton:hover {
  transform: scale(1.2);
  transition: 0.2s;
  user-select: none;
}

.light-img {
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.dark-img {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

body.dark-mode .light-img {
  opacity: 0;
}

body.dark-mode .dark-img {
  opacity: 1;
}

#darkModeIcon {
  width: auto;
  height: 40px;
  display: block;
}

#darkModeToggle {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  width: auto;
  height: auto;
  position: relative;
  user-select: none;
  display: inline-block;
  line-height: 0;
}

#darkModeTog img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
  user-select: none;
}

#darkModeToggle:hover {
  transform: scale(1.2);
  transition: 0.2s;
  user-select: none;
}

#shop {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 12px;
  border: 2px solid #000;
  padding: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  display: none;
  flex-direction: column;
  width: 320px;
  max-width: 90vw;
  z-index: 4000;
  user-select: none;
  transition: background-color 0.3s, color 0.3s;
  color: black;
  cursor: auto !important;
}

#shop.dark {
  background: #222;
  color: #eee;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  border: 2px solid white;
}
#shop h2 {
  margin-top: 0;
  text-align: center;
  margin-bottom: 15px;
}
#shop button.closeShop {
  align-self: flex-end;
  background: #888;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 5px 10px;
  cursor: pointer;
  margin-bottom: 10px;
  font-weight: 600;
}
#shop button.closeShop:hover {
  background: #555;
}
#shop .item {
  background: #eee;
  border-radius: 8px;
  margin: 6px 0;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  color: black;
}
#shop.dark .item {
  background: #333;
  color: #eee;
}
#shop .item:hover {
  background: #ddd;
}
#shop.dark .item:hover {
  background: #444;
}
#shop .item .price {
  color: #900;
  font-weight: 700;
  margin-left: 10px;
  white-space: nowrap;
}

#shop .item button.buyButton {
  background-color: green;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 5px 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-left: 15px;
}
#shop .item button.buyButton:hover {
  background-color: darkgreen;
}

body.dark-mode {
  color: white;
}
body.dark-mode .stats {
  color: #ddd;
}
body.dark-mode .applestats {
  color: #ddd;
  text-shadow: none;
}
body.dark-mode .popup:not(#comboMultoplierPopup) {
  color: white;
  text-shadow: 0 0 5px black;
}
body.dark-mode #comboMessage {
  color: white !important;
  text-shadow: 2px 2px 6px black;
}

.hide-cursor-player {
  display: none !important;
}

.hide-cursor {
  cursor: none !important;
}

.hidden {
  display: none !important;
}

#bottomLeftText {
  position: fixed;
  bottom: 10px;
  left: 10px;
  font-size: 1em;
  color: black;
  font-weight: bold;
  z-index: 3000;
  user-select: none;
}
body.dark-mode #bottomLeftText {
  color: white;
}

#skyOrb {
  position: absolute;
  will-change: transform;
  transition: transform 0.1s linear;
  transition: opacity 0.5s linear;
}

.container {
  overflow: hidden;
}

#comboBarContainer {
  position: relative;
  top: -4px;
  margin-top: -25px;
  width: 400px;
  height: 26px;
  background-color: transparent;
  border: 3px solid black;
  border-radius: 6px;
  padding: 2px;
  box-sizing: border-box;
  z-index: 200;
  display: flex;
  overflow: hidden;
}

body.dark-mode #comboBarContainer {
  border-color: white;
}

.comboBarWrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

#comboBarBlack,
#comboBarRed {
  height: 100%;
  transition: width 0.1s linear;
  border-radius: 3px;
  flex-shrink: 0;
}

#comboBarBlack {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  border-radius: 3px;
  z-index: 1;
}

body.dark-mode #comboBarBlack {
  background-color: white;
}

#comboBarRed {
  position: absolute;
  width: 0%;
  height: 100%;
  background-color: red;
  border-radius: 3px;
  z-index: 2;
}

.buyButton:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.hover-target:hover {
  transform: scale(1.4);
  transition: transform 0.3s ease;
  z-index: 3000;
}

.hover-target:hover {
  cursor: auto !important;
}

#buyGloveAnimation {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
}

#buyGloveAnimation img {
  animation: glowPop 1s ease-out forwards;
  filter: drop-shadow(0 0 20px gold) drop-shadow(0 0 40px yellow);
  width: 300px;
  height: 300px;
  object-fit: contain;
}

@keyframes glowPop {
  0% {
    transform: scale(0.2) rotate(-15deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.2) rotate(5deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

#buyGloveMessage {
  margin-top: 10px;
  font-size: 1.5em;
  font-weight: bold;
  text-align: center;
  color: gold;
  text-shadow: 2px 2px 8px black;
  animation: fadeInUp 0.8s ease-out forwards;
  z-index: 99999;
}

@keyframes fadeInUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

#infoModal {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  cursor: pointer;
}

#infoModal.show {
  display: flex;
}

#infoModal .infoModalContent {
  background: white;
  padding: 20px;
  border-radius: 10px;
  max-width: 300px;
  box-shadow: 0 0 20px rgba(183, 0, 255, 0.555);
  border: 2px solid rgb(212, 0, 255);
  position: relative;
  text-align: center;
  color: black;
  cursor: default;
}

body.dark-mode #infoModal .infoModalContent {
  background: #1e1e1e;
  color: #f5f5f5;
  box-shadow: 0 0 20px rgba(183, 0, 255, 0.555);
  border: 2px solid rgb(212, 0, 255);
}

#infoModal #closeInfoModal {
  position: absolute;
  top: 5px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: inherit;
}

.page {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease-in-out, background-color 0.3s, color 0.3s;
  margin: 0;
  overflow: hidden;
  font-family: "Comic Sans MS", "Comic Sans";
  background-color: #f4f4f4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: none;
  user-select: none;
}

.page.dark-mode {
  background-color: #1d1d1d;
  color: white;
}

#skyOrb {
  position: fixed;
  top: 0;
  left: 0;
  width: 100px;
  z-index: 0;
  pointer-events: none;
}

#page1 {
  z-index: 0;
  top: 0;
  left: 0;
}
#page2 {
  z-index: 0;
  top: 0;
  left: 0;
  transform: translateX(100%);
}
#page3 {
  z-index: 11;
  top: 0;
  left: 0;
  transform: translateY(100%);
  position: absolute;
  background: url("Textures/cellar.png") center/cover no-repeat;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  cursor: none;
}
#page4 {
  z-index: 12;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  position: absolute;
  background: url("Textures/office.png") center/cover no-repeat;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  cursor: none;
}

#page5 {
  z-index: 12;
  top: 0;
  left: 0;
  transform: translateX(100%);
  position: absolute;
  background: url("Textures/elevatorRoom.png") center/cover no-repeat;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  cursor: none;
}

#page3::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 11, 0.85);
  z-index: 5;
  pointer-events: none;
}

#page3.flashlight-active::before {
  -webkit-mask-image: radial-gradient(
    circle 500px at var(--x, 50%) var(--y, 50%),
    transparent 0%,
    black 80%
  );
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-composite: destination-out;

  mask-image: radial-gradient(
    circle 500px at var(--x, 50%) var(--y, 50%),
    transparent 0%,
    black 80%
  );
  mask-repeat: no-repeat;
  mask-position: center;
  mask-composite: exclude;
}

.flashlight-btn {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  width: 200px;
  height: 180px;
  user-select: none;
  position: absolute;
  margin-top: 10px;
  margin-bottom: 0;
  top: 70%;
  left: 50%;
  z-index: 40;
}

.flashlight-btn img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s ease;
  user-select: none;
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.493));
}
.flashlight-btn:hover {
  transform: scale(1.2);
  transition: 0.2s;
  user-select: none;
}

#whackGame {
  display: none;
  position: relative;
  height: 100%;
  width: 100%;
  cursor: default;
}

.hud {
  position: absolute;
  top: 10px;
  left: 10px;
  color: white;
  font-size: 24px;
  display: flex;
  gap: 20px;
  z-index: 10;
}
.quit {
  margin-left: auto;
  background: red;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 8px;
}

.target {
  position: absolute;
  cursor: pointer;
  user-select: none;
}

.end-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 28px;
  text-align: center;
  z-index: 50;
  cursor: default;
}

.goback-button {
  margin-top: 20px;
  font-size: 20px;
  padding: 10px 20px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
}

.button {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  width: 90px;
  height: 90px;
  position: fixed;
  user-select: none;
  z-index: 1999;
}

.button img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
  user-select: none;
  z-index: 1999;
}

.button:hover {
  transform: scale(1.2);
  transition: 0.2s;
  user-select: none;
}

#button-next {
  right: 20px;
  top: 50%;
}
#button-next2 {
  left: 500px;
  bottom: 20px;
  transform: translateX(-50%);
}
#button-next2:hover {
  transform: translateX(-50%) scale(1.2);
}
#button-back {
  left: 20px;
  top: 50%;
}
#button-back3 {
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
}
#button-back3:hover {
  transform: translateX(-50%) scale(1.2);
}
#button-back3.hidden {
  opacity: 0;
  pointer-events: none;
}
#button-back4 {
  right: 20px;
  top: 50%;
}
#button-back4.hidden {
  opacity: 0;
  pointer-events: none;
}
#button-back5 {
  left: 20px;
  top: 50%;
}
#button-left3 {
  left: 20px;
  top: 50%;
} /* Office */
#button-right3 {
  right: 20px;
  top: 50%;
} /* Elevator */
#button-left3.hidden {
  opacity: 0;
  pointer-events: none;
}
#button-right3.hidden {
  opacity: 0;
  pointer-events: none;
}

#page1.shift-left {
  transform: translateX(-100%);
}
#page2.shift-left {
  transform: translateX(0);
}

#page1.shift-up {
  transform: translateY(-100%);
}
#page3.shift-up {
  transform: translateY(0);
}

#page3.shift-left {
  transform: translateX(-100%);
}
#page5.shift-left {
  transform: translateX(0);
}

#page3.shift-right {
  transform: translateX(100%);
}
#page4.shift-right {
  transform: translateX(0);
}

#appleGameButton {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  width: 200px;
  height: 180px;
  user-select: none;
  position: absolute;
  margin-top: 10px;
  margin-bottom: 0;
  bottom: 20px;
  right: 400px;
}

#appleGameButton img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s ease;
  user-select: none;
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.493));
}

#appleGameButton:hover {
  transform: scale(1.2);
  transition: 0.2s;
  user-select: none;
}

#appleGame {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("Textures/applegame.png") no-repeat center center;
  background-size: cover;
  cursor: none;
  overflow: hidden;
  display: none;
  z-index: 1000;
}

body.dark-mode #appleGame {
  background: url("Textures/applegame-dark.png") no-repeat center center;
  background-size: cover;
}
.falling-item {
  position: absolute;
  width: 80px;
  height: 80px;
}

#catcher {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 300px;
  height: auto;
}

#score,
#timeLeft {
  position: absolute;
  font-size: 40px;
  font-weight: bold;
  right: 10px;
  color: black;
}

body.dark-mode #score,
body.dark-mode #timeLeft {
  color: white;
}
#score {
  top: 190px;
}
#timeLeft {
  top: 250px;
}

#endScreen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 28px;
  text-align: center;
  cursor: default;
}

#endScreen button {
  margin-top: 20px;
  font-size: 20px;
  padding: 10px 20px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
}

#appletree,
#appletree-dark {
  height: 800px;
  width: auto;
  position: absolute;
  bottom: 0;
  left: 50%;
  top: 19.6%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 10;
}

.apple-on-tree {
  position: absolute;
  width: 110px;
  height: 110px;
  cursor: pointer;
  transition: transform 0.2s;
  z-index: 30;
}

.apple-on-tree:active {
  transform: scale(1.2);
}

#applespawn {
  width: 580px;
  height: 320px;
  background: none;
  z-index: 21;
  pointer-events: none;
  position: fixed;
  top: 300px;
}

#appleCount img {
  transition: transform 0.2s ease;
  cursor: pointer;
}

#appleCount img:hover {
  transform: scale(1.2);
}

#feedWindow {
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 12px;
  padding: 20px;
  width: 300px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

body.dark-mode #feedWindow {
  background-color: #1d1d1d;
  border: 2px solid #fff;
}

#feedWindow button {
  background-color: #ffcc33;
  border: 2px solid #ffaa00;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  transition: transform 0.1s ease, background-color 0.2s ease;
  font-family: "Comic Sans MS", "Comic Sans";
}

#feedWindow button:hover {
  background-color: #ffaa00;
  transform: scale(1.1);
  font-weight: bold;
}

#feedWindow button:active {
  transform: scale(0.95);
}

#officeGameButton {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  width: 330px;
  height: 249px;
  user-select: none;
  position: absolute;
  margin-top: 10px;
  margin-bottom: 0;
  bottom: 410px;
  left: 290px;
}

#officeGameButton img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s ease;
  user-select: none;
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.493));
}

#officeGameButton:hover {
  transform: scale(1.1);
  transition: 0.2s;
  user-select: none;
}

#officeGame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 20;
  background: url("Textures/desktop.png") center/cover no-repeat;
  cursor: default;
}

#officeEndScreen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 30;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#officeSpawnArea {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 800px;
  overflow: hidden;
}

.office-file {
  user-select: none;
  pointer-events: all;
}

.qte-overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 18px;
  text-align: center;
  padding: 8px;
}

#cloudUpload,
#trashBin {
  position: absolute;
  width: 120px;
  height: 130px;
  cursor: default;
  z-index: 5;
}
#cloudUpload {
  bottom: 10px;
  left: 50px;
}
#trashBin {
  bottom: 10px;
  right: 50px;
}
