html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
  
  body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  .page-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
    
  /* Header starts here */
  
  .Navbar {
      position: sticky;
      top: 0;
      left: 0;
      width: 100%;
      
      background-color: rgba(255,255,255,0.1);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 1vw;
      height: 30px;
      box-sizing: border-box;
      }
  
  #Navbar-left {
      display: flex;
      justify-content: flex-start;
  }
  
  #Navbar-right {
      display: flex;
      gap: 12px;
  }
  
  #Navbar-home, #Navbar-photos, #Navbar-blogs, #Navbar-diary {
      color: rgb(181, 181, 181);
      font-size: 1.3rem;
      font-family: 'Suisseintl Webxl', Arial, sans-serif; 
      cursor: pointer;
      transition: color 0.2s;
      padding: 8px 10px;
      border-radius: 4px;
      font-weight: 700;
      letter-spacing: -0.08rem;
  }
  
  .links {
    text-decoration: none;
    color: rgb(181, 181, 181);
  }
  
  #Navbar-photos:hover, #Navbar-blogs:hover, #Navbar-diary:hover {
      text-decoration: underline;
      color: #ff5555;
  }
  
  @media (max-width: 768px) {
      .Navbar {
          height: 30px;
          padding: 0 1vw;
      }
      #Navbar-home, #Navbar-photos, #Navbar-blogs, #Navbar-diary {
          font-size: 1.3rem;
          padding: 6px 8px;
      }
      #Navbar-right {
          gap: 8px;
      }
  }
  
  @media (max-width: 480px) {
      .Navbar {
          height: auto;
          padding: 6px 3vw;
      }
      #Navbar-left {
          justify-content: flex-start;
      }
      #Navbar-right {
          justify-content: space-between;
          gap: 2px;
          margin-top: 4px;
      }
      #Navbar-home, #Navbar-photos, #Navbar-blogs, #Navbar-diary {
          font-size: 0.7rem;
          padding: 3px 5px;
      }
  }
  
  
  /* Header Ends here */
  
  
  
    /* footer starts here  */
  
    footer {
      bottom: 0;
      left: 0;
      width: 100%;
      margin-top : auto;
      margin-bottom : 5vh;
      height: fit-content;
      background-color: transparent;
      font-family: 'Suisseintl Webxl', Arial, sans-serif;
      display: flex;
      justify-content : space-between
    }
  
    .footer-left {
      padding-left : 5vw;
    }
  
    .footer-left1 {
          display: flex;
          font-size: clamp(1.2rem, 1.5vw + 0.5rem, 1.8rem); 
      font-weight: 700;
      letter-spacing: clamp(-0.1rem, -0.1vw - 0.05rem, -0.05rem);
    }
    #footer-black {
       color : gray;
       filter: blur(1px);
    }
    #footer-red {
      color : #ff0000e0;
    }
  
    .footer-left-red2 {
      color : #ff0000e0;
      font-size: clamp(1rem, 1.2vw + 0.3rem, 1.5rem); 
      font-weight: 700;
      letter-spacing: clamp(-0.07rem, -0.07vw - 0.02rem, -0.03rem);
    } 
  
    .footer-right {
      padding-right : 5vw;
    }
  
    .footer-right-1 {
      padding-top : 0;
      display: flex;
      flex-direction: column;
      font-size: clamp(1.2rem, 1.5vw + 0.5rem, 1.8rem); 
      font-weight: 700;
      letter-spacing: clamp(-0.1rem, -0.1vw - 0.05rem, -0.05rem);
    }
  
    #footer-right-1-1 {
      display : flex;
      gap : 5px;
      height : fit-content;
      margin-top : -33px;
    }
  
    .footer-links {
      margin-top : -2vh;
      
    }
    .link {
      color: rgb(181, 181, 181);
      font-family: 'Suisseintl Webxl', Arial, sans-serif; 
      cursor: pointer;
      transition: color 0.2s;
      font-size: clamp(1rem, 1.2vw + 0.3rem, 1.5rem); 
      font-weight: 700;
      letter-spacing: clamp(-0.07rem, -0.07vw - 0.02rem, -0.03rem);
      padding-right : 10px;
    }
  
      .link:hover {
          text-decoration: underline;
          color: #ff5555;
      }
  
  
      @media(max-width:600px) {
          footer {
              display : flex;
              flex-direction: column;
          }
          .footer-left {
            display: none;
        }
          .footer-right {
              margin-left : 6vw;
              text-align: right;
          }
          #footer-right-1-1 {
              display : flex;
  
              justify-content: right;
          }
      }
  
    /* footer ends here   */
  

    /* content starts here  */
     
.content-wrapper {
  max-width: 800px;
  margin: 5rem auto 5rem auto; 
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  font-family: 'Suisseintl Webxl', Arial, sans-serif;
  position: relative;
  top: 3rem; 
}

@media (max-width: 900px) {
  .content-wrapper {
    max-width: 95vw;
    padding: 1.5rem 1rem;
    top: 2rem;
  }
}
@media (max-width: 600px) {
  .content-wrapper {
    padding: 1rem 0.5rem;
    border-radius: 0;
    margin: 3rem auto 3rem auto;
    top: 1rem;
  }
}


.content-header {
  margin-bottom: 2rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 1rem;
  text-align: center; 
}

.content-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #a8a6a6;
  letter-spacing: -0.1rem;
  line-height: 1.2;
  text-align: center;
}


.content-categories {
  margin-bottom: 0.7rem;
  text-align: center;
}
.category {
  display: inline-block;
  background: #f3f3f3;
  color: #d11a2a;
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 3px;
  padding: 0.2em 0.7em;
  margin-right: 0.5em;
  margin-bottom: 0.2em;
  text-transform: lowercase;
}


.content-excerpt {
  font-size: 1.12rem;
  color: #666;
  margin-bottom: 0.2rem;
  font-style: italic;
  text-align: center;
}


.content-body {
  font-family : 'Nunito', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
  color: #222;
  text-align: left; 
}


.content-body img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.5rem auto;
  border-radius: 4px;
}


.content-body h1, .content-body h2, .content-body h3, .content-body h4 {
  margin-top: 1.4em;
  margin-bottom: 0.6em;
  font-weight: 600;
  text-align: center;
}

.content-body p {
  margin-bottom: 1em;
}

.content-body ul, .content-body ol {
  margin: 1em auto;
  display: inline-block;
  text-align: left;
}


.content-body a {
  color: #d11a2a;
  text-decoration: underline;
  transition: color 0.2s;
}
.content-body a:hover {
  color: #b0171f;
}

.content-body img{
  border-radius: 22px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.5rem auto;
}

.content-body h1,
.content-body h2,
.content-body h3,
.content-body h4,
.content-body h5,
.content-body h6 {
  text-align: left;
}


@media only screen and (max-width: 600px) {
  body, .content-container, .content-header, .content-title, .content-categories, .category, .content-excerpt, .content-body {
    font-size: 0.92rem; 
  }
  .content-title {
    font-size: 1.3rem;
  }
  .content-excerpt {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 400px) {
  body, .content-container, .content-header, .content-title, .content-categories, .category, .content-excerpt, .content-body {
    font-size: 0.85rem;
  }
  .content-title {
    font-size: 1.1rem;
  }
}

    /* content ends here  */

    /* backbutton starts here  */
    .back-button {
      position: fixed;
      top: 5vh;
      left: 24px;
      z-index: 1000;
      background: transparent;
      border: none;
      padding: 0;
      cursor: pointer;
      outline: none;
      border-radius: 50%;
      box-shadow: 0 4px 16px rgba(0,0,0,0.18);
      transition: box-shadow 0.18s;
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    
    .back-button svg {
      display: block;
      width: 100%;
      height: 100%;
    }
    
    @media (max-width: 600px) {
      .back-button {
        top: 30px;
        left: 12px;
        width: 34px;
        height: 34px;
      }
      .back-button svg {
        width: 100%;
        height: 100%;
      }
    }
    
    
    

    /* backbutton ends here  */

    /* go to top button  starts here*/
    #goTopBtn {           
  position: fixed;              
  bottom: 20px;                 
  right: 24px;                  
  z-index: 1000;                 
  background-color: #ffffff;
  border: none;
  padding: 7px 7px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: opacity 0.3s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: box-shadow 0.18s;
  width: 35px;
  height: 35px;
  display: flex;
      align-items: center;
      justify-content: center;
}

#goTopBtn svg {
  display: None;
  width: 100%;
  height: 100%;
  fill: rgb(209, 26, 42);
  stroke-width: 2.2;
}


    /* go to top button ends here */

  /* scroll bar progres starts here */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;           /* thickness */
  background: red;       /* progress color */
  width: 0%;             /* start empty */
  z-index: 9999;         /* stay above all content */
}
  /* scroll bar progres ends here */




