      * {
        box-sizing: border-box;
      }

      body {
        font-family: Arial, Helvetica, sans-serif;
        background-color: black;
        margin: 0;
      }

      @font-face {
        font-family: 'Excalifont';
        src: url('fonts/Excalifont-Regular.woff2') format('woff2');
        font-weight: normal;
        font-style: normal;
      }

      h2 {
       /*  background-color: rgb(232, 190, 221); */
        margin: 0;
        padding: 10px;
        font-family: monospace;
        color: whitesmoke;
      }

      h3 {
        margin: 0;
        padding: 10px;
        font-family: 'Courier new',monospace;
        font-weight: 100;
        color: whitesmoke;
      }

      h4 {
        margin: 0;
        padding: 10px;
        font-family: 'Excalifont';
        color: whitesmoke;

      }

      a {
        font-family: monospace;
        color: whitesmoke;
        text-decoration: none;
      }

      .instagram {
        font-size:large;
        padding: 10px;
      }

      a:hover{
        color:rgb(237, 184, 184);
        text-decoration: none;
      }

      header {
        background-color: black;
        text-align: center;
        padding: 10px 0;
      }

      header img {
        width: 128px;
        height: 128px;
      }

      section {
        display: flex;
        flex-direction: row;
        min-height: 100vh;
      }

      /* Left navigation bar */
      nav {
        width: 90px;
        background: black;
        font-family: 'Excalifont';
        padding: 20px 10px;
        border-right: 2px solid whitesmoke;
      }

      nav ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
      }

      nav ul li {
        margin: 10px 0;
      }

      nav a {
        color: whitesmoke;
        font-size: 1rem;
        text-decoration: none;
      }

      /* Article area - centered */
      article {
        flex: 1;
        background-color: black;
        margin: 0 auto;
        max-width: 800px;
        padding: 30px;
        text-align: left;
        color: whitesmoke;
      }

      article img {
        display: block;
        margin: 0 auto;
        width: 128px;
        height: 128px;
      }

          /* GALLERY STYLE */
      .gallery {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 24px;
        padding: 10px 0;
      }

      .gallery-item {
        text-align: center;
      }

      .gallery-item h3 {
        margin-bottom: 8px;
        font-family: monospace;
        font-size: 16px;
        font-weight: normal;
      }

      .gallery-item img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
        border-radius: 4px;
      }

      h1 {
        text-align: center;
        font-family: monospace;
        color: whitesmoke;
        font-size: 1.7rem;
      }

      footer {
        background-color: black;
        padding: 10px;
        text-align: center;
        color: white;
      }

      @media (max-width: 600px) {
        section {
          flex-direction: column;
        }

        nav {
          width: 100%;
          display: flex;
          justify-content: center;
          background: black;
          padding: 10px 0;
          border-right: none;
          border-bottom: 2px solid whitesmoke;
        }

        nav ul {
          display: flex;
          justify-content: center;
          flex-wrap: wrap;
          list-style: none;
          padding: 0;
          margin: 0;
        }

        nav ul li {
          margin: 0 10px;
        }

        article {
          width: 100%;
        }

      h1 {
        text-align: center;
        font-family: monospace;
        color: whitesmoke;
        font-size: 1.5rem;
      }

      }