body {
    /*background-image:url("../images/background-image.jpg");*/
    background-image:url("../images/digital-background.jpg");
    background-position: right center;
    background-size:cover;
    overflow: auto;
}

/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: thin;
    scrollbar-color: #f57d4d #ffffff;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: thin;
  }

::-webkit-scrollbar-track {
  background: orange; /* color of the tracking area */
}

::-webkit-scrollbar-thumb {
  background-color: blue; /* color of the scroll thumb */
  border-radius: 20px; /* roundness of the scroll thumb */
  border: 1px solid orange; /* creates padding around scroll thumb */
}
