body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    /* font-family: Arial, sans-serif; */
    font-family: Menlo, "Meslo LG", monospace;
    font-size: 12px;
    color: #fff;
  }
  
  
  /* Target the scrollbar */
  
  ::-webkit-scrollbar {
    width: 5px; /* Width of the scrollbar */
    height: 5px;
  }
  
  /* Handle of the scrollbar */
  ::-webkit-scrollbar-thumb {
    background-color: #888; /* Color of the scrollbar handle */
    border-radius: 5px; /* Rounded corners */
  }
  
  /* Track (background) of the scrollbar */
  ::-webkit-scrollbar-track {
    background-color: transparent; /* Color of the scrollbar track */
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background-color: #555; /* Change color on hover */
  }
  
  /* Track on hover */
  ::-webkit-scrollbar-track:hover {
    background-color: transpaent; /* Change track color on hover */
  }
  
  /* Corner (between vertical and horizontal scrollbar) */
  ::-webkit-scrollbar-corner {
    background-color: transparent; /* Color of the corner */
  }

  .more-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: inherit;
    color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.more-button:hover {
    background-color: #f0f0f0;
    color: #555;
    border-color: #999;
}