

            body {
                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 */





        #container {
            max-width: 1400px; /* CHANGE MEDIA QUERY */
            margin: 0 auto;
        }

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

        }

        #header {
            
        }

        /* Navigation*/
        #navbar {
            width: 100%;
            background-color: var(--darkest);
            height: 220px;
            background-image: none;
            background-size: 100%;
            background-position: bottom;
            margin-top: 20px;
            font-size: 1.4rem;
        }

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

        #navbar li {
            
        }

        /* Navigation Links*/
        #navbar a {
            text-align: center;
            padding-top: 10px;
            color: var(--primary-accent-links);
            font-weight: 800;
            color: var(--primary-accent-links);
            /* navbar text color */
            font-weight: 800;
            text-decoration: none;
            /* this removes the underline */
        }

        #navbar a:hover {
            color: var(--hover-text-light);
            text-decoration: underline;
            text-decoration-style: wavy;
            animation: bounce 1.5s linear infinite;
        }

        #flex {
            display: flex;
        }
        
        
        #new {
          z-index: 1;
          position: absolute;
          top: 10px;
          left: 10px; 
          padding: 2px;
          max-width:85px;
          max-height:30px;
          font-size: 1rem;
          font-weight: bold;
          text-align: center;
          color: var(--text-light);
          animation: bounce 1.8s linear infinite;
          
          background-color: var(--primary-accent-links);
          border: 2px dashed var(--text-light);
          border-radius: 5px;
        }

/* END IDS */


/* ELEMENTS */
        aside {
            color: var(--text-light);
            background-color: var(--dark-secondary);
            width: 300px;
            padding:20px;
        }


        main {
            background-color: var(--main);
            flex: 1;
            padding: 20px;
            order: 2;
            text-align: center;
        }

        #leftSidebar {
            order: 1;
        }

        #rightSidebar {
            order: 3;
        }

        footer {
            color: var(--text-light);
            background-color: var(--dark-main);
            width: 100%;
            height: 100px;
            padding: 10px;
            text-align: center;
            margin-top: 20px;
        }
        
         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;
          }
          
        p {
          font-size: 1.2rem;
        }
        
        h1 {
            font-family: quikens, serif;
            font-size: 2rem;
            color: var(--dark-accent);
        }

        h2 {
            color: var(--hover-text-light);
            font-family: Aloevera, monospace;
            font-size: 3rem;
            margin: 0px;
        }
        
        h3 {
            color: var(--primary-accent-links);
        }
        
        strong {
            color: var(--none);
        }
        
        hr {
            color: var(--hover-text-light);
            border-style: dashed;
            border-width: 2px;
            border-radius: 5px;
            width: 70%;
            margin: 20px auto;
        }
        
/* END ELEMENTS*/


/* CLASSES */

    /* Menu Above Navbar */
    .menu {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-evenly;
      align-items: center;
    }
    
    .menu div {
      width: 150px;
      height: 150px;
      margin-top: 10px;
      margin-bottom: 10px;
    }
    
    /*Gallery of Plants*/
    .plant-gallery {
      display: flex;
      flex-wrap: wrap;
    }
    
    #profile-gallery {
      height: 425px;
      overflow:scroll;
      border: 3px dashed var(--text-light) ;
      border-radius: 10px;
      scrollbar-color: var(--dark-secondary) #CFB099;
    }
    
   #profile-gallery div {
      width: calc(50% - 10px);
      height: 200px;
      border: 3px solid var(--hover-text-dark) ;
    }
    
    
    .plant-gallery div {
      width: calc(25% - 10px);
      height: 400px;
      margin: 5px;
      border: 5px solid var(--primary-accent-links) ;
      border-radius: 10px;
      position: relative;
      overflow: hidden;
      transition: transform 0.5s ease;
    }
    
        .plant-gallery div:hover {
          transform: scale(1.05);
        }

    .plant-gallery div img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      
    }

  /* Images on Hover */
    .plant-gallery div img {
      transition: transform 0.5s ease;
    }
  
    .plant-gallery div:hover img {
      transform: scale(1.35) rotate(2deg);
    }
    
  /* Captions */
    .plant-gallery div span {
      display: inline-block;
      position: absolute;
      bottom: 15px;
      left: 0;
      width: 100%;
      box-sizing: border-box;
      padding: 5px 10px;
      
      background: var(--primary-accent-links);
      color: var(--text-light);
      border-style:none;
      border-radius: 500px;
      
      text-align: center;
      font-weight: bold;
      opacity: 0;
      transition: opacity 0.5s ease;
      animation: bounce 1.5s linear infinite;
      
    }

    /* Captions on Hover */
    .plant-gallery div:hover span {
      opacity: 1;
      transform: none;
    }
    

    /* Plant Info Page */
    .container {
      display:flex;
      width: 100%;
      flex-wrap: wrap;
      margin: 20px auto;
      text-align: center;
    }
    

    .plant-profile {
      display: flex;
      height: auto;
      width: 100%;
      
    }
    


    .profile-image {
      display:flex;
      width:450px;
      height: 550px;
      border: solid 4px var(--primary-accent-links);
      border-radius: 10px;
      padding: 10px;
      justify-content: center;
      align-items: center;
      transition: transform 0.5s ease;
    }
    
        .profile-image img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          overflow: hidden;
          border-radius: 10px;
        
        }
        
        .profile-image:hover {
          transform: scale(1.05);
        }
    
    .profile-box {
      padding: 0 20px 0 30px;
      text-align: left;
      margin: 0 25px;
      border: dashed 3px var(--text-light);
      height: 200px;
      overflow: scroll;
      scrollbar-color: var(--primary-accent-links) var(--main);
    }
        
        #dieffenbachia {
          height:220px;
        }
        
        .name {
          color: var(--hover-text-dark);
          font-family: Aloevera, helvetica, sans;
          font-weight: bold;
          font-size: 4rem;
          margin: 0;
          text-indent: -.5rem;
          text-decoration: underline;
          text-underline-position: from-font;
        }
        
        .species {
          color: #B37C4F;
          font-family: quikens, serif;
          font-size: 1.1rem;
          font-style: italic;
          margin: 2px 0; 
        }
        
        .species span {
          display: inline-block;
          color: #4D7327;
          font-family: quikens, serif;
          font-size: 0.8rem;
          text-transform: uppercase;
          background-color: var(--text-light);
          border-radius: 20px;
          vertical-align: middle;
          padding: 4px;
          width:auto ;
          display: inline-block;
          animation: bounce 1.5s linear infinite;
        }
        
        .common {
          color: var(--primary-accent-links);
          font-family: Quikens;
          font-weight: bold;
          font-size: 1.1rem;
          margin: 1px 0;
        }
        
        .rating {
          color: #a47533;
          font-size: 1.2rem;
          margin: 10px 0;
        }
    
    .profile-info {
      height: 290px;
      overflow-y: scroll;
      text-align:left;
      padding: 0 0 0 30px;
      margin: 0 25px;
      scrollbar-color: var(--primary-accent-links) var(--main);
    }
    
        .profile-info p {
          font-family: Montserrat;
          margin: 10px 0;
          font-size: 1rem;
          text-indent: -2rem;
        }
    
        .profile-info p b {
          margin: 10px;
          font-family: Sinacanth;
          font-weight: bold;
          font-size: 1rem;
          color: var(--hover-text-dark);
          text-transform: uppercase;
          text-decoration: underline dotted;
        }
        
        .profile-info br {
            display: block;
            content: ""; 
            margin-top: 3px;
        }
        
    .profile-description {
      height: 550px;
      overflow-y: scroll;
      padding: 25px 15px;
      scrollbar-color: var(--main) var(--dark-secondary);
    }
    

    .white-header {
      color: var(--text-light);
      font-family: quikens;
      font-size: 1.5rem;
      text-transform: uppercase;
    }
    
    .meter {
      width: 80%;
      height: 20px;
      overflow: hidden;
      background-color: #CFB099;
      border: solid 2px var(--hover-text-dark);
      border-radius: 50px;
    }
    
      .meter div {
        background-color: var(--hover-text-light);
        background-image: linear-gradient(234deg, #ce8b3a 0%, #E8B851 100%);
        height: 100%;
        border-right: solid 1px var(--hover-text-dark);
      }
    
    .log {
      width: 100%;
      height: 600px;
      overflow: hidden;
    }
    

    
/* CLASSES END */

/* CSS LAYOUT END */



/* MEDIA QUERY */
        /* MAX WIDTH: = 'CONTAINER WIDTH' - 100px */
        @media only screen and (max-width: 1300px) {
            #flex {
                flex-wrap: wrap;
            }

            aside {
                width: 100%;
            }

            /* the order of theitems is adjusted here for responsiveness!since the sidebars would be too small on a mobile device. feel free to play around with the order!*/
            main {
                order: 1;
            }

            #leftSidebar {
                order: 2;
            }

            #rightSidebar {
                order: 3;
            }

            #navbar ul {
                flex-wrap: wrap;
            }
            
            .sticker-div {
            display: none;
          }
        }
        
        
        
        @media (max-width: 800px) {

         .plant-gallery div {
            width: calc(50% - 10px);
            height: 200px;
          }
          
          
        }
        
        
/* MEDIA QUERY END */



