/* Entire scrollbar */
::-webkit-scrollbar {
  width: 14px;
}

/* Track (background) */
::-webkit-scrollbar-track {
  background: #111;
  border: 2px solid #E0943B;
}

/* Thumb (the draggable part) */
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #E0943B, #8a4f12);
  border-radius: 4px;
  border: 2px solid #000;
}

/* Hover effect */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #ffd27a, #E0943B);
}

body {
  background-color: black;
  color: white;
  font-family: Verdana;
  margin: 0;
  overflow-y: auto;
  overflow-x: auto;
}

.page {
  background-color: black;
  min-height: 98vh;
  margin-top: 10px;
  margin-left: 0px;
  border: 5px solid #E0943B;
  border-radius: 8px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.page > * {
  background-color: black;
  position: relative;
  z-index: 2;
}


#faceDiv {
  background-color: black;

  width: 400px;
  height: 450px;

  margin: 50px auto;

  display: block;

  border: 5px solid #E0943B;
  border-radius: 8px;
  box-sizing: border-box;

  overflow: hidden; /* keeps p5 canvas inside */
}


/* ===== Buttons ===== */
#happyButton,
#sadButton,
#angryButton,
#scaredButton {
  align-items: center;
  justify-content: center;
  width: 20%;
  cursor: pointer;
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;

  padding: 20px 0;

  background: linear-gradient(to bottom, #2a2a2a, #000);
  color: #fff;

  border: 2px solid #E0943B;
  border-radius: 4px;

  /* retro raised effect */
  box-shadow:
    2px 2px 0px #8a4f12,
    -1px -1px 0px #ffd27a;

  transition: all 0.15s ease;
}

