
@import url('https://fonts.cdnfonts.com/css/super-mario-256');
/* hide scrollbar but allow scrolling */
body {
    -ms-overflow-style: none; /* for Internet Explorer, Edge */
    scrollbar-width: none; /* for Firefox */
    overflow-y: hidden; 
    cursor: url('/images/cursor_main.png'),auto;
  }


  body::-webkit-scrollbar {
    display: none; /* for Chrome, Safari, and Opera */
  }
.header {
    overflow: hidden;
    background-color: #0000003b;
    padding: 20px 10px;
    margin: 20px;
    font-family: 'Super Mario 256', sans-serif;


  }
  
  /* Style the header links */
  .header a {
    float: left;
    color: black;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    font-size: 18px;
    line-height: 25px;
    border-radius: 4px;
  }
  
  /* Style the logo link (notice that we set the same value of line-height and font-size to prevent the header to increase when the font gets bigger */
  .header a.logo {
    font-size: 25px;
    font-weight: bold;
  }
  
  /* Change the background color on mouse-over */
  .header a:hover {
    background-color: #ddd;
    color: black;
    cursor: url('/images/cursor_select.png'),auto;
  }
  
  /* Style the active/current link*/
  .header a.active {
    background-color: dodgerblue;
    color: white;
  }
  
  /* Float the link section to the right */
  .header-right {
    float: right;
  }
  
  /* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */
  @media screen and (max-width: 500px) {
    .header a {
      float: none;
      display: block;
      text-align: left;
    }
    .header-right {
      float: none;
    }
  }

  .content {
    overflow: hidden;
    background-color: #0000003b;
    padding: 1%;
    margin: 10px 20px;
    font-family: 'Super Mario 256', sans-serif;
    text-align: center;

  }