body {
    font-family: 'Quicksand', 'Comic Sans MS', cursive, sans-serif;
    background: #f7fbf9;
    color: #413d3d;
    margin: 0;
    padding: 0;
  }
  .main-nav {
    background: #e4ecc9;
    padding: 15px;
    display: flex;
    justify-content: center;
    gap: 32px;
    border-bottom: 2px dashed #b6c4a2;
  }
  .main-nav a {
    color: #758c43;
    padding: 7px 17px;
    border-radius: 20px;
    background: #f4e1d2;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.2s, color 0.2s, transform 0.2s;
  }
  .main-nav a:hover {
    background: #ffe1f2;
    color: #e95f76;
    transform: scale(1.07) rotate(-3deg);
  }
  h1, h2 {
    font-family: 'Quicksand', cursive, Arial, sans-serif;
    margin: 28px 0 12px 0;
    text-align: center;
  }
  .sparkle {
    color: #eaa0b2;
    font-size: 1.3em;
  }
  .about-container, .projects-container, .skills-container, .gallery-container {
    max-width: 850px;
    margin: 2.5em auto;
    padding: 35px;
    background: #fffbe9;
    border-radius: 34px;
    box-shadow: 0 4px 30px #d9e4aa33;
    border: 3px solid #f9e2ce;
  }
  .profile-pic-container {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 22px;
  }
  .profile-pic {
    display: inline-block;
    width: 350px;
    border-radius: 50%;
    border: 2px dashed #eaa0b2;
  }
  .contact-box {
    margin: 20px 0;
    background: #e4ecc9;
    padding: 18px;
    border-radius: 19px;
    font-size: 1.12em;
    box-shadow: 0 2px 10px #eaa0b222;
  }
  .project-card {
    background: #f4e1d2;
    border-radius: 22px;
    padding: 22px;
    margin: 18px 0;
    box-shadow: 0 2px 10px #ffcde233;
    transition: transform 0.2s;
  }
  .project-card:hover {
    transform: translateY(-7px) scale(1.03) rotate(2deg);
    box-shadow: 0 8px 28px #eaa0b255;
  }
  .project-card img {
    max-width: 95%;
    border-radius: 19px;
    border: 1.5px dotted #eaa0b2;
  }
  .project-link {
    display: block;
    width: 150px;  /* or any width less than container */
    margin: 0 auto;
    color: #758c43;
    background: #ffe1f2;
    padding: 5px 12px;
    border-radius: 14px;
    font-size: 1em;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    text-align: center;
  }
  
  
  .project-link:hover {
    background: #eaa0b2;
    color: #fffbe9;
  }
  .skills-container table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.1em;
    background: #f4e1d2;
    border-radius: 15px;
    overflow: hidden;
  }
  .skills-container th, .skills-container td {
    border: 1.7px dashed #eaa0b2;
    padding: 18px 12px;
    text-align: left;
  }
  .skills-container th {
    background: #ffe1f2;
    color: #e95f76;
  }
  .gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 22px;
  }
  .gallery-grid img {
    width: 400px;
    border-radius: 23px;
    border: 2.5px solid #eaa0b2;
    box-shadow: 0 4px 17px #ffcde277;
    cursor: pointer;
    transition: transform 0.25s;
  }
  .gallery-grid img:hover {
    transform: scale(1.06) rotate(-2deg);
    border-color: #758c43;
  }
  .hand-drawn {
    font-family: 'Shadows Into Light', cursive, sans-serif;
    background: #eaa0b2;
    color: white;
    padding: 1px 7px;
    border-radius: 8px;
  }
  
  p {
    font-size: 16px; }

h3 {
    line-height: 30px;
}

.contact-link {
    color: #164f16; /* Forest Green */
    text-decoration: underline dotted;
    font-weight: bold;
    transition: color 0.2s;
  }
  .contact-link:hover {
    color: #196619; /* Darker forest green for hover */
    text-decoration: underline wavy;
  }
  
  table {
    width: 90%; /* or a fixed width like 800px */
    margin-left: auto;
    margin-right: auto;
    border-collapse: collapse;
    background: #f4e1d2;
    border-radius: 15px;
    overflow: hidden;
    font-size: 1.1em;
    box-shadow: 0 0 12px #d9e4aa88;
  }
  
  th, td {
    border: 1.7px dashed #eaa0b2;
    padding: 18px 12px;
    text-align: center;
    vertical-align: middle;
    font-family: 'Quicksand', cursive, sans-serif;
  }
  
  th {
    background: #ffe1f2;
    color: #e95f76;
    font-weight: bold;
  }
  
  .front-end-webdev .image-container {
    text-align: center;
    margin: 15px 0;
  }
  
  .front-end-webdev .image-container img {
    display: inline-block; /* Or 'block' with margin: auto */
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(234, 160, 178, 0.4);
  }
  .entry {
    background: #f4e1d2;
    border-radius: 22px;
    padding: 20px 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px #ffcde233;
    border: 1.5px dashed #eaa0b2;
    font-family: 'Quicksand', cursive, sans-serif;
    transition: transform 0.2s ease;
  }
  
  .entry:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 28px #eaa0b255;
  }
  
  h1, h2 {
    text-align: center;
    color: #e95f76;
  }
  
  main.education-container, main.experience-container {
    max-width: 850px;
    margin: 2.5em auto;
    padding: 35px;
    background: #fffbe9;
    border-radius: 34px;
    box-shadow: 0 4px 30px #d9e4aa33;
    border: 3px solid #f9e2ce;
    color: #413d3d;
  }
  .section-nav {
    background: #fffbe9;
    border: 1.7px dashed #eaa0b2;
    border-radius: 15px;
    margin: 1em auto 2em;
    max-width: 850px;
    padding: 12px 20px;
    text-align: center;
    font-family: 'Quicksand', cursive, sans-serif;
  }
  
  .section-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    gap: 1.5em;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .section-nav a {
    color: #228B22; /* Forest green for links */
    font-weight: bold;
    text-decoration: underline dotted;
    transition: color 0.2s;
  }
  
  .section-nav a:hover,
  .section-nav a:focus {
    color: #196619; /* Darker forest green on hover/focus */
    text-decoration: underline wavy;
  }
  