/* reset.css */

/* Remove default margin, padding and set box-sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Remove default list styles */
  ul, ol {
    list-style: none;
  }
  
  /* Remove underline and inherit color for links */
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* Inherit font for form elements */
  input, button, textarea, select {
    font: inherit;
  }
  
  /* Remove borders and outline for interactive elements */
  button, input, textarea, select {
    border: none;
    outline: none;
  }
  
  /* Make media elements behave predictably */
  img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
  }
  
  /* Full height and width for the main layout */
  html, body {
    height: 100%;
    width: 100%;
    overflow: hidden; /* Hide scrollbars on all browsers */
  }
  
  /* Disable text selection globally (optional, can remove if not needed) */
  body {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
  }
  
