/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

#home {
  position: relative;
  padding: 3rem 2rem;
  background: #fcfcfc;
  border-radius: 20px;
  margin-bottom: 2rem;
}
   
   



body {
    background-color:#34d099;
    margin: 0;
    padding: 0;
    font-family: 'Source Code Pro', monospace;
}

/* The fixed bottom mosaic strip */
.bottom-mosaic {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px; /* adjust as needed */
    background-image: url('back3.png');
    background-repeat: repeat-x;
    background-position: bottom left;
    background-size: 300px auto;
    image-rendering: pixelated;
    pointer-events: none;
    z-index: -1; /* send it behind content */
}

    header {
          background-image: url('banner4.png');
      background-color: #fcfcfc;
      text-align: center;
      image-rendering: pixelated;
      font-family: 'Source Code Pro', monospace;
      font-size: 2.7rem;
      color: #4A4A4A ;
      padding: 1em;
      font-weight: bold;
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain; /* or use 'cover' for full width coverage */
     image-rendering: pixelated;
    }

nav {
  background-color: #34d099;
  padding: 0em;
  display: flex;
  justify-content: center;
  gap: 1em;
  border-bottom: 2px solid #4A4A4A;
  font-family: 'Source Code Pro', monospace;
  font-size: 1rem;
}

nav a {
  background-color: #fcfcfc;
  padding: 1em 1em;
  border: 4px solid #4A4A4A;
  border-bottom: 0px;
  border-radius: 12px 12px 0 0;
  text-decoration: none;
  color: black;
  transition: all 0.3s ease;
  position: relative;
  top: 3px;
}

nav a:hover {
  background-color: #fbf236;
  color: #4A4A4A;
}

nav a.active {
  background-color: #fcfcfc;
  color: white;
  font-weight: bold;
}


    main {
      padding: 2rem;
      max-width: 800px;
      margin: auto;
    }
    section {
      margin-bottom: 3rem;
    }
    .profile-container {
    display: flex;
    align-items: center;
    gap: 2em;
}
        .intro {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      flex-wrap: wrap;
    }
    .intro img {
      max-width: 250px;
      height: auto;
      border-radius: 30px;
      padding: 0.5em; 
      border: 1px solid #F1DE4D;
    }
     h1 {
      color: #34d099;
      border-bottom: 2px dashed #34d099;
      padding-bottom: 0.25rem;
      font-family: 'Source Code Pro', monospace;
      font-size: 3em;
      text-align: center;
    }

    h2 {
      color: #333;
      border-bottom: 2px dashed #34d099;
      padding-bottom: 0.25rem;
      font-family: 'Source Code Pro', monospace;
    }
    footer {
      background-color: #34d099;
      text-align: center;
      padding: 1rem;
      font-size: 0.9rem;
      color: #fff;
    }
    
  
  .container {
  width: 950px;
  margin: auto;
  margin-top: 2em; 
  margin-bottom: 2em;
  background: #fcfcfc;
  border: 6px solid #4A4A4A;
  border-radius: 12px;
  padding: 0rem 0rem;
  box-sizing: border-box;
  position: relative;
}
    
      /* SIDEBARS*/

    .page-wrapper {
  display: flex;
  justify-content: center;
  gap: 2rem;
}


      /* FOOTER*/
.footer-image {
  width: 100%;
  bottom-margin:-2em; 
}

.footer-image img {
  display: block;
  width: 100%;
  height: auto;
}

.head-image img {
  display: block;
  width: 100%;
  height: 80px;
  margin-bottom:-40px; 
  margin-top:-60px; 

      image-rendering: pixelated;
}
