  @font-face {
    font-family: NickFont;
    src: url('./images/NicksFlashFont-Regular.ttf');
  }

  body {
    background: url("https://file.garden/ZWlUCY4S7Xz2vypS/archived%20backgrounds/colours/black/gryd015.jpg") repeat;
    font-family: NickFont;
    color: white;
    text-align: center;
    margin: 0;
    padding: 20px;
  }

  h1 {
    margin-bottom: 20px;
    font-size: 28px;
  }

  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    justify-items: center;
    padding: 10px;
  }

  .vistawin {
    image-rendering: pixelated;
    border-image-source: url('./images/shegonebudvistawindow9slicefull.png');
    border-image-slice: 11 11 11 11 fill;
    border-image-width: 50px;
    border-image-repeat: repeat;
    width: 280px;
    height: 264px;
    padding: 10px;
    background: rgba(0,0,0,0.6);
    color: black;
    font-size: 20px;
    font-family: Consolas, "Courier New", monospace;
    transition: transform 0.2s ease;
  }

  .vistawin:hover {
    transform: scale(1.1);
  }

  .art-item img {
    width: 100%;
    image-rendering: smooth;
    cursor: pointer;
    border-radius: 20%;
    position: relative;
    top: 20px;
    transition: transform 0.25s ease;
    width: 97%;
    max-height: 62%;
  }

  .art-item img:hover {
    transform: scale(1.15);
    z-index: 2;
  }

  #sidebar {
    position: fixed;
    right: -400px;
    top: 0;
    width: 400px;
    height: 100%;
    background: rgba(0,0,0,0.9);
    color: #fff;
    padding: 20px;
    overflow-y: auto;
    transition: right 0.4s ease;
    border-left: 2px solid #666;
    font-size: 29px;
    line-height: 24px;
  }

  #sidebar.active {
    right: 0;
  }

  #sidebar img {
    width: 100%;
    margin-bottom: 10px;
  }

  #closeBtn {
    position: absolute;
    top: 19px;
    right: 10px;
    cursor: pointer;
    font-size: 35px;
    font-family: NickFont;
  }

  #back{
    position: fixed;
    transform: scaleX(-1);
    left: 0%;
  }

  #back1 {
    width: 47px;
  }