


  body {
      margin: 0;
      height: 100%;
      overflow: hidden;
      font-family: 'Sinacanth', serif;
      margin: 0;
      background-color: var(--main);
      background-size: cover;
      color: var(--text-dark);
      background-image: url("https://file.garden/aiBlP24PQBWh7mO3/Banner_ForestSceneBorderless");
      background-attachment: fixed;
      background-position: center;
  }

  * {
      box-sizing: border-box;
  }




/* CSS LAYOUT */

/* IDS */

        #everything {
          height: 100%;
          display: flex;
          justify-content: center;
          align-items: center;
          padding-top: 3rem;
        }
        
        #header,
        #main,
        #menu {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        #container {
            max-width: 1400px; /* CHANGE MEDIA QUERY */
            margin: auto;
        }

        #container a {
            color: var(--secondary-accent-links);
            font-weight: bold;
        }

        #header {
            width: 100%;
            background-color: #283325;
            height: 150px;
            background-image: var(--header-image);
            background-size: 100%;
            background-position: bottom;
            margin-top: 20px;
            margin-bottom: 20px;
        }

        /* Navigation*/
        #navbar {
            width: 100%;
            background-color: var(--darkest);
            height: 50px;
            position: static;
            top: 0;
            font-size:1.4rem;
        }

        #navbar ul {
            display: flex;
            padding: 0;
            margin: 0;
            list-style-type: none;
            justify-content: space-evenly;
        }

        #navbar li {
            padding-top: 10px;
            color: var(--primary-accent-links);
            font-weight: 800;
        }

        /* Navigation Links*/
        #navbar li a {
            color: var(--primary-accent-links);
            font-weight: 800;
            text-decoration: none;
        }


        #navbar li a:hover {
            color: var(--hover-text-light);
            text-decoration: underline;
            text-decoration-style: wavy;
        }

        #flex {
            display: flex;
        }
        

        
/* END IDS */


/* ELEMENTS */
        header { 
            height: 5vh;
            box-sizing: border-box;
}

        #title {
          background-image: url("https://silkandbones.neocities.org/images/Silkandbones.png");
          background-position: center;
          background-size: 450px;
          background-repeat: no-repeat;
          height:110px;
          margin:0;
          grid-area: title; 
        }

        aside {
            grid-area: sidebar; 
            color: var(--text-light);
            background-color: var(--dark-secondary);
            background-image: url("https://png.pngtree.com/png-vector/20190122/ourmid/pngtree-yellow-line-simple-framework-border-texture-grid-line-png-image_527221.png");
            background-repeat: repeat;
            background-size: 150px 150px;
            padding: 10px;
            text-align: center;
            box-sizing: border-box;
            margin-right: 30px;
        }


        main {
            grid-area: main;
            color: var(--text-dark);
            background-color: var(--main);
            padding: 20px;
            text-align: center;
            box-sizing: border-box;
            height: 475px;
            display: flex;
            justify-content: space-evenly;
            }

        footer {
            grid-area: footer;
            color: var(--text-light);
            background-color: var(--dark-main);
           /* background-image: linear-gradient(0deg, #1E2914 0%, #54572B 100%); */
            height: auto;
            padding: 20px;
            text-align: center;
            box-sizing: border-box;
        }

        h1 {
            font-family: quikens, serif;
            font-size: 2rem;
            color: var(--dark-accent);
            margin: 0;
        }

        h2 {
            font-family: sinacanth, serif;
            font-size: 1.5rem;
            color: var(--text-light);
            margin: 0;
        }
        
        h3 {
            color: var(--secondary-accent);
        }
        
        strong {
            color: var(--none);
        }
        
        a {
            color: var(--primary-accent-links);
            text-decoration: none;
            font-weight: bold;
        }
        
          a:hover {
            color: var(--hover-text-light);
            text-decoration: underline;
            text-decoration-style: dotted;
        }

/* END ELEMENTS*/


/* CLASSES */
    .index-container {
      height: 95vh;
      width: 75%;
      display: grid;
      grid-gap: 20px;
      grid-template:
        "sidebar title"
        "sidebar main"
        "sidebar footer"
        / 1fr 4fr;
      padding: 50px;
      margin-left: 150px;
}

      .updates {
          height:425px;
          overflow:hidden;
        }
    
    /* Stamp Gallery */
    .blinkie-gallery {
      display: flex;
      flex-wrap: wrap;
      width: 100%;
      justify-content: center;
      margin-left: auto;
      margin-right: auto;
    }
    
        .blinkie-gallery div {
          display: block;
        }
        
        .blinkie-gallery div img {
          height: 50px;
          margin: 2px;
          transition: transform 0.4s;
        }
        /* Size on Hover */
        .blinkie-gallery div img:hover {
          transform: scale(1.2);
        }

    .side-menu {
      height: 100%;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }

       .side-menu div {
          width: 135px;
          height: 135px;
          margin-top: 5px;
          margin-bottom: 5px;
        }
        
/* CLASSES END */

   /* CSS for extras */
        #topBar {
            width: 100%;
            height: 30px;
            padding: 10px;
            font-size: smaller;
            background-color: var--(dark-accent-2);
        }
        
        * {
  box-sizing: border-box;
}
/* CSS LAYOUT END */




/* MEDIA QUERY */

        
/* MEDIA QUERY END */

