body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh; /* Ensure content stretches to at least the height of the viewport */
    position: relative; /* Needed for footer positioning */
  }
  
  header {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
  }

  .project-img {
    display: block; /* Ensure the image behaves as a block element */
    max-width: 100%; /* Ensure the image does not exceed the width of its container */
    margin: 0 auto; /* Center the image horizontally */
  }

  /* Add this CSS for specifying image sizes */
  .image-size {
    max-width: 50%; /* Default size */
  }
  
  /* Additional classes for different sizes if needed */
  .image-size.medium {
    max-width: 60%; /* Adjust size as needed */
  }
  
  .image-size.large {
    max-width: 80%; /* Adjust size as needed */
  }
  
  .projects-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
  }
  
  .project {
    width: 30%;
    margin-bottom: 20px;
    background-color: #f2f2f2;
    padding: 20px;
    border-radius: 5px;
  }
  
  .project-info {
    margin-bottom: 20px;
  }
  
  .project-info p {
    margin: 5px 0;
  }
  
  .project-footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    position: absolute; /* Position the footer at the bottom */
    bottom: 0;
  }
  
  .project-footer a {
    color: white;
  }

  footer {
    background-color: #333;
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 20px 0;
    width: 100%;
    position: absolute; /* Position the footer at the bottom */
    bottom: 0;
  }

  /* Progress bar styles */
  
  .container {
    text-align: center;
  }
  
  .progressbar {
    counter-reset: step;
    padding: 0;
  }
  
  .progressbar li {
    list-style-type: none;
    display: inline-block;
    position: relative;
    text-align: center;
    margin: 0 20px; /* Add spacing between progress bar stages */
  }
  
  .progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 30px;
    height: 30px;
    border: 2px solid #bebebe;
    display: block;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    line-height: 27px;
    background: white;
    color: #bebebe;
    text-align: center;
    font-weight: bold;
  }
  
  .progressbar li.active:before {
    background: #3aac5d;
    color: white;
  }
  
  .progressbar li.active + li:after {
    background: #3aac5d;
  }
  
  .progressbar li.active + li:before {
    border-color: #3aac5d;
  }
  
  .progressbar li:not(:last-child):after {
    content: '';
    position: absolute;
    width: calc(100% - 15px); /* Adjust the width based on the size of the progress circles */
    height: 2px;
    background: #bebebe;
    top: 15px;
    left: calc(100% + 5px);
    transform: translateX(-50%);
    z-index: -1;
  }
  
  .project-img {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .project-description {
    margin-top: 20px;
  }

  .progressbar li.completed:before {
    background: #3aac5d;
    color: white;
  }
  
  .progressbar li.completed + li:after {
    background: #3aac5d;
  }