  body {
      margin: 0;
      font-family: "Audiowide", sans-serif;
      background-color: rgb(17, 26, 40);
  }

  /**==============================================*/
  /*!          NAV CONTAINER                      */
  /**==============================================*/

  .navbar {
      overflow: hidden;
      background-color: rgb(17, 26, 40);
      position: fixed;
      bottom: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      border-top: 1px solid #424e62;
      z-index: 1000000000000000000;
  }


  /**==============================================*/
  /*!          NAV CONTAINER LINKS                */
  /**==============================================*/

  .navbar .link {
      flex: 1;
      float: left;
      display: block;
      color: #f2f2f2;
      text-align: center;
      padding: 14px 15px;
      font-size: normal;
      width: 100%;
      cursor: pointer;
  }


  .navbar .link:hover {
      background-color: #333e64;
      color: white;
  }

  .active {
      background-color: #424e62;
      color: white;
  }


  /** ===========================================  */
  /**!      SECTION       */
  /** ===========================================*/

  .section {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      min-height: 100vh;
      padding: 40px 20px;
      box-sizing: border-box;
  }


  .section-header {
      text-align: center;
      color: white;
      margin-bottom: 24px;
  }

  .section-first-container-inner-box {
      width: 100%;
      display: flex;
      justify-content: center;
  }

  /** =========================================== */
  /*!              CARD CONTAINER                 */
  /** =========================================== */
  .card {
      border: 1px solid black;
      background-color: aliceblue;
      box-shadow: 10px 10px 0px #607293;
      transition: 0.2s ease;
  }

  .card:hover {
      transform: scale(1.02);
  }
  .btn {
      display: flex;
      flex-direction: column;
      justify-content: center;
      border: 1px Solid black;
      box-shadow: 5px 5px 0px #4c5a74;
      font-family: "Audiowide", sans-serif;
      text-decoration: underline black;
      font-size: normal;
      text-align: center;
      width: 100%;
      height: 40px;
      border-radius: 0px;
      cursor: pointer;
      color: black;
  }

  .btn:hover {
      transform: scale(1.02);
  }

  .btn:active {
      transform: scale(1);
      box-shadow: none;
      border: 2px solid black;
  }

  .section-content-box {
      font-size: normal;
      margin-left: 15px;
      margin-right: 15px;
  }

  @media (max-width: 350px) {
      .link a {
          width: 10px;
          padding: 0px;
      }

      .navbar {
          display: flex;
      }

      .navbar .link {
          flex: 1;
          font-size: 10px;
          padding: 10px 2px;
          white-space: nowrap;
      }
  }
