body {
    height: 100%;
    margin:0
}

.webpage {
    height:max-content;
    width: 100%;
}


::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #F2F5F8;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #CDD3DB;
    border-radius: 2%;
    visibility: hidden;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #C3C3C3;
  }
  *:hover::-webkit-scrollbar-thumb {
    visibility: visible;
  }
  
  .hoverable-svg:hover path {
    fill: #0B101C;
    color: #0B101C;
  }