/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

   * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  :root {
    --darkPurple: rgb(47,27,98);
    --darkGray: rgb(84, 84, 84);
  } 
  
  html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-feature-settings: normal;
    scroll-behavior: smooth;
    overflow-x:hidden;
  }
  


  h1, h2{
    /* color: steelblue; */
    font-family: 'Courier New', Courier, monospace;
  }
  h1 {
    font-size: 60px;
  }
  h2 {
    /* font-size: 29px; font-weight: bold; */
    /* font-size: 40px; */
  }
  /* h3 {
    font-family: 'mbytepc';
    color: var(--darkPurple);
    font-size: 20px; font-weight: bold;
  } */
  /* h4,
  h5{
    font-family: 'Courier New', Courier, monospace;
    color: var(--darkPurple);
    font-size: 16px;
  } */
  /* h6 {
    font-size: inherit;
    font-weight: inherit;
  } */
   a {
    font-family: 'Courier New', Courier, monospace;
   }
  /* p{
    font-family: 'mbytepc';
    color: var(--darkPurple);
    font-size: 16px;
    font-weight: bold;
  } */
   p {
    /* font-family: 'Courier New', Courier, monospace; */
   }
   li {
    /* font-family: 'Courier New', Courier, monospace; */
   }
  /* a {
    font-size: 16px; 
    font-family: 'mbytepc';
    font-weight: bold;
    color: var(--darkPurple);
    text-decoration: inherit;
  } */
  /* li{
    font-family: 'mbytepc';
    font-size: 17px;
  } */

  @media only screen and (max-width:769px) {
    h1{
      font-size: 20px;
    }
    h5{
      font-size: 12px;
    }
    p{
      font-size: 12px;
    }
  }