*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
    overflow-x: hidden;
    background-color: #1e1e1e;
}

body {
    overflow-x: hidden;
    background-color: #1e1e1e;
    color: #fff;
    font-size: 1rem;
    font-family: "Aeonik-regular", sans-serif;
}

/* Custom scrollbar for Webkit-based browsers */
::-webkit-scrollbar {
    width: 8px;
  }
  
  ::-webkit-scrollbar-track {
    background: #1e1e1e;
    border-radius: 0px;
  }
  
  ::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 10px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #fff;
  }