body {
    margin: 0;
    font-family: 'Courier New', Arial, sans-serif;
    background: #fff;
    color: #111;
    line-height: 1.5;
    text-align: center;
}

h1 {
  
    font-family: 'Courier New';
    margin: 30px 0 10px;
    font-weight: 400;
}

#linkDiv {
    display: flex;
    justify-content: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
    background: #fff;
}

.navLinks {
    border: none;
    background: none;
    font-size: 16px;
    margin: 0 15px;
    cursor: pointer;
    font-weight: 500;
    transition: color 0.2s;
}

.navLinks:hover {
    color: #f05a28;
}

section {
    display: none;
    padding: 40px 20px;
}

/* Portfolio */
#portfolioList {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 300px;
    padding: 0;
  
}

.portfolioLinks {
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 250px;
}

.portfolioLinks img {
    width:  300px;
    height: 300px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.portfolioLinks:hover img {
    transform: scale(1.25);
}

.portfolioLinks span {
    margin-top: 8px;
    font-weight: 500;
    display: block;
    height: 40px; 
    line-height: 20px;
    text-align: center;
}

/* Lightbox css */
.light-box {
  display: none; 
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1000;
}

#mainImage {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.light-box .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

#thumbsContainer {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

#thumbsContainer img {
  width: 80px;
  height: auto;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

#thumbsContainer img:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* all Courier New front */
body, h1, h2, h3, p, button, span, li {
    font-family: 'Courier New', monospace !important;
    letter-spacing: 0.5px;
}
#imageDescription {
  color: #fff;              
  margin-top: 15px;
  max-width: 70%;            
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  font-family: 'Courier New', monospace; 
  opacity: 0.9;
}

#heading img {
    width: 100px;
    height: 100px;
    margin-top: 40px; 
    vertical-align: middle;
}
