
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #fff9d9, #fffae8);
    color: #333;
}


header {
    text-align: center;
    padding: 40px 20px;
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 10px;
    color: #2c5f41; 
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #444;
    font-weight: 600;
    transition: 0.3s;
}

nav a:hover {
    color: #e67f2e; 
}


.section {
    max-width: 900px;
    margin: 60px auto;
    padding: 20px;
}

.title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 30px;
}

.green {
    color: #3d704d;
}


.project {
    background: #e9efc1;
    padding: 25px;
    border-radius: 18px;
    margin-bottom: 45px;
    box-shadow: 0 0 20px rgba(0,0,0,0.06);
}


.project-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #d46a1f;
}


.description {
    line-height: 1.6;
    margin-bottom: 20px;
}


.img-fixed {
    width: 100%;
    height: 450px;        
    object-fit: cover;    
    border-radius: 12px;
}


footer {
    text-align: center;
    padding: 30px;
    margin-top: 50px;
    font-size: 0.9rem;
}


.img-graphic {
  display: block;
  width: 100%;
  max-width: 420px;
  height: 360px;     
  object-fit: contain;
  background: #fff;  
  border-radius: 10px;
  padding: 8px;       
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  margin-left: auto; 
  margin-right: auto;
}


