body {
    background-color: white;
    color: black;
    font-family: 'Crimson Text', sans-serif; /* Crimson Text as primary, sans-serif as fallback */
    margin: 0;
    padding: 0;
  }
  


  .logo {
    max-width: 50%;
    height:auto;
    margin: 0 auto;

  }

  .container {
    width: 80%; /* Existing width definition */
    margin: 0 auto; /* Existing margin for centering */
    text-align: center; /* Existing text alignment */
    max-width: 1000px; /* This sets the maximum width */
    margin-bottom: 0px;
  }

  .container2 {
    width: 80%; /* Existing width definition */
    margin: 0 auto; /* Existing margin for centering */
    text-align: center; /* Existing text alignment */
    max-width: 1000px; /* This sets the maximum width */
    margin-bottom: 0px;
  }

  .portrait {
    width: 20%; /* Make the image two-thirds of its original size */
    margin-right: 20px; /* Add some margin for spacing */

  }

  header {
    background-color: #f1f1f1;
    padding: 10px 0;
  }

  
  nav {
    display: flex;
    justify-content: center; /* Space out links horizontally */
  }
  


nav a {
    color: inherit;
    text-decoration: none;
    padding: 10px 5px;
    font-weight: bold;
}


  
  nav a:hover {
    background-color: #ddd; /* Lighten background on hover */
  }
  
  img {
    width: 30%;
    margin: 10px;
    transition: all 0.3s ease;
  }
  
  .image-row {
    display: flex;
    justify-content: center; /* Space out project images */
    flex-wrap: wrap;
    margin-bottom: 0px;
  }
  
  .image-row:hover img {
    opacity: 0.5; /* Makes original images semi-transparent on hover */
  }
  
  .image-row:hover .project-button {
    opacity: 1; /* Makes button fully visible on hover */
  }
  
  .project-button {
    background-color: black;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    opacity: 0; /* Hides button initially */
    transition: all 0.3s ease;
  }

  @media only screen and (max-width: 768px) {
    .image-row {
      flex-direction: column; /* Restate for mobile specificity */
      align-items: center; /* Restate for mobile specificity */
    }
    .image-row img {
      min-width: 200px;

    }

    .logo img {

      min-width: 130px;
    }

    .photo-post-wedding1 {
      min-width: 200px;

    }

    .photo-post-aurora {
      min-width: 200px;

    }
  }

    /* Media query for screens wider than 1000px */
    @media only screen and (min-width: 1000px) {
      .container {
        width: 80%; /* Maintains 80% width on large screens */
      }
    }