* {
    box-sizing: border-box;
  }
  
  /* body {
    margin: 0px;
    font-family: 'segoe ui';
  } */
  
  /* header {
    display: flex;
    height: 100px;
    width: 100%;
    background-color: #222;
    position: relative;
    margin-top: 10px;
  }
  
 header > .nav-header {
    display: inline;
  }
  
header > .site-title-image {
    display: inline-block;
    background-image: url("../Images/GBA_white_outline_inverted.png");
    width:128px;
    height:74px;
    background-repeat: no-repeat;
    margin: 10px;
    flex: 1;
    padding: 10px 10px 10px 10px;
    
  }

header > .site-title {
  margin: 10px;
  color:white;
  font-size: 3em;
  flex: 2;
  font-family: 'LemonMilkBold';

  } */

  /* .nav-title > a {
    text-decoration: none;
    font-size: 3em;
    color: #fff;
  } */
  
  /* header > .nav-btn {
    display: none;
  } */
  
  /* header > .nav-links {
    display: inline;
    float: right;
    font-size: 22px;
    flex: 3;
  }
  
  header > .nav-links > a {
    display: inline-block;
    padding: 13px 10px 13px 10px;
    text-decoration: none;
    color: white;
    background-color: #333;
    border-radius: 0% 0% 0% 0%;
  }
  
  header > .nav-links > a:hover {
    background-color: white;
    color: black;

  }
  
  header > #nav-check {
    display: none;
  } */
  
  /* @media (max-width:600px) {
    header > .nav-btn {
      display: inline-block;
      position: absolute;
      right: 0px;
      top: 0px;
    }
    header > .nav-btn > label {
      display: inline-block;
      width: 50px;
      height: 50px;
      padding: 13px;
    }
    header > .nav-btn > label:hover,.nav  #nav-check:checked ~ .nav-btn > label {
      background-color: rgba(0, 0, 0, 0.3);
    }
    header > .nav-btn > label > span {
      display: block;
      width: 25px;
      height: 10px;
      border-top: 2px solid #eee;
    }
    header > .nav-links {
      position: absolute;
      display: block;
      width: 100%;
      background-color: #333;
      height: 0px;
      transition: all 0.3s ease-in;
      overflow-y: hidden;
      top: 50px;
      left: 0px;
    }
    header > .nav-links > a {
      display: block;
      width: 100%;
    }
    .nav > #nav-check:not(:checked) ~ .nav-links {
      height: 0px;
    }
    .nav > #nav-check:checked ~ .nav-links {
      height: calc(100vh - 50px);
      overflow-y: auto;
    }
  } */

/* .folder {
  border: 2px solid black;
  border-radius: 5px;
  width: 100px;
  height: 70px;
  background: white;
}

.folder:hover {
  background-color: black;
  border: 2px solid white;
} */

/* SVG drawing.  Draw a folder.  Can also draw any other complex design that is 120x90px.  Just define the svg class and provide a path */
svg {
  /* border: 1px solid red; */
  width: 120px;
  height: 90px;
}

svg.folder > path {
  d: path(
    "M10,15 h100 v70 h-100 v-70 M15,15 l5,-10 h30 l5,10"
  );
  fill: white;
  stroke: black;
}

svg.test > path {
  d: path(
    "M0,0 h50 v10 h10 v-10 h50 v80 h-50 v10 h-10 v-10 h-50 z"
  );
  fill: white;
  stroke: black;
}

svg > path:hover {
  fill: black;
  stroke: white;
}


.new-code {
  color: red;
  font-weight: bold;
}


.equation {
  background: white;
  border: 1px solid red;
  padding: 10px;
}

