/* ---- FONTS CSS CODES ------ */

.ibm-plex-mono-thin {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 100;
  font-style: normal;
}

.ibm-plex-mono-extralight {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 200;
  font-style: normal;
}

.ibm-plex-mono-light {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 300;
  font-style: normal;
}

.ibm-plex-mono-regular {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

.ibm-plex-mono-medium {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 500;
  font-style: normal;
}

.ibm-plex-mono-semibold {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  font-style: normal;
}

.ibm-plex-mono-bold {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
  font-style: normal;
}

.ibm-plex-mono-thin-italic {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 100;
  font-style: italic;
}

.ibm-plex-mono-extralight-italic {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 200;
  font-style: italic;
}

.ibm-plex-mono-light-italic {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 300;
  font-style: italic;
}

.ibm-plex-mono-regular-italic {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 400;
  font-style: italic;
}

.ibm-plex-mono-medium-italic {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 500;
  font-style: italic;
}

.ibm-plex-mono-semibold-italic {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  font-style: italic;
}

.ibm-plex-mono-bold-italic {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
  font-style: italic;
}


/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f2f2f2; /* Light gray background like your screenshot */
    font-family: "IBM Plex Mono", monospace;
    color: #333;
    font-size: 12px;
    letter-spacing: 1px;


    /* margin: 0;
    background: radial-gradient(circle, rgba(242, 242, 242, 0.1) 0%, rgba(242,242,242,0.8) 100%);
    background: radial-gradient(ellipse at center, transparent 0%, rgba(242, 242, 242, 0.9) 100%); */
    
}


body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* This creates the vignette overlay */
  box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.5);
  pointer-events: none; /* Allows you to click buttons underneath */
  z-index: 9999;
}

/* Header */

header {
    padding-top: 17px;
    text-align: center;
    position: sticky;
    top: 0;
    background: #f2f2f2;
    z-index: 1000;
    height: var(--nav-height);
}

nav a {
    text-decoration: none;
    color: #888;
    margin: 0 10px;
    transition: 0.3s;
    background-color: #f2f2f2;
}

nav a.active, nav a:hover {
    color: #001eff;
    text-decoration: underline;
}


/* Main Container */
.main-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 0px 0px 0px;
    background-color: #f2f2f2;
    align-items: center;
    

}


/* Responsive Adjustments */
@media (max-width: 768px) {
    
    body {
        font-size: 14px;
    }
}




/* Project Grid Styles  */
.work-grid {
    display: flex;
    flex-direction: column;
    gap: 11px; /* Spacing between projects */
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    text-align-last: center;
}

/* 350px Image size */
.img-min-350 img {    
  width: 100%;
  height: auto;
  max-width: 400px; /* Optional limit */
  display: block;
  

}

.text-info-container {
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
}



/* Page Gaps */

.gap-footer {
    padding: 5%;
}


.gap {
    padding: 5%;
}

.gap-2 {
    padding-top: 3%;
}

.gap-img {
    padding-top: 9%;
}

.gap-3 {
    padding-top: 11%;
}


.gap-4 {
    padding-top: 1.5%;
}

.gap-5 {
  padding-top: 2.5%;
}



/* Footer */
/* footer {
    text-align: center;
    width: 100%;
    background-color: #001eff;
    padding-bottom: 45px;
}

.footer-links a {
    text-decoration: none;
    color: #f2f2f2;
    margin: 0 5px;
}

.footer-links a:hover {
    color: #a4a4a4;
    text-decoration: underline;
} */

h1, p, a {
      max-width: 100%;
      word-break: break-word;
    }

footer {
    text-align: center;
    width: 100%;
    background-color: #001eff;
    padding-bottom: 45px;

}

.footer-links  {
    text-decoration: none;
    color: #f2f2f2;
    margin: 0 5px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
}

.footer-links a {
    text-decoration: none;
    color: #f2f2f2;
}

.footer-links a:hover {
    color: #a4a4a4;
    text-decoration: underline;
}