*:not(.footer_content *) {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    background-color: rgb(28, 28, 28);
  }

  /* Mobile Styles */
  @media only screen and (max-width: 400px) {
  }

  /* Tablet Styles */
  @media only screen and (min-width: 401px) and (max-width: 960px) {

  }

  /* Desktop Styles */
  @media only screen and (min-width: 961px) {

  }

  /* width */
::-webkit-scrollbar {
    width: 10px;
  }

  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #888;
  }

  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
