html {
  padding: 0;
  margin: 0;
  font-size: 1.2rem;
}

body {
  padding: 0;
  margin: 0;
  overflow: overlay;
  color: #1e1e1e;
}

a {
  text-decoration: none;
  color: #1e1e1e;
}

.centerItems {
  text-align: center;
}

.centerVerticalHorizontal {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.inLineCenter {
  display: flex;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.cursorArrow {
  cursor: context-menu;
}

.cursorPointer {
  cursor: url('../cursors/pointer.png'), pointer;
}

.topBottomShadow {
  box-shadow: 0px 0px 25px #888, 0px 0px 25px #888;
}

/* scroll bar */
/* width */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #404040;
  border-radius: 2px;
}
