/* ======================================================================
   BASE / RESET
   ====================================================================== */

   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", Arial, sans-serif;
  }
  
  body {
    background-color: #111;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  a { text-decoration: none; color: #fff; }
  ul { list-style: none; }
  