  @keyframes fadeIn {
      from {
          opacity: 0;
      }
      to {
          opacity: 1;
      }
  }

  @media only screen and (max-width: 768px) {
    .responsive {
      flex: 0 1 48%;
      max-width: 48%;
    }
  }

  @media only screen and (max-width: 500px) {
    .text-box {
      margin-left: 20px;
      margin-right: 20px;
    }
    .advise {
      margin-left: 20px;
      margin-right: 20px;
    }
  }

  .title {
    text-align: center;
    color: #fff;
    width: 100%;
    height: auto;
    font-family: 'Lexend Deca'; 
    font-size: 50px;
    margin: 20px 0;
  }

  .title h1 {
    margin-top: -70px;
    font-size: 80px;
    margin: 10px 0;
    margin-top: -10px;
  }

  .title h2 {
    font-size: 3.5rem;
    margin: 5px 0;
  }

  .title h4 {
    font-size: 3rem;
    margin-top: -10px;
  }

  .subtitle {
    text-align: center;
    font-family: 'M PLUS Rounded 1c';
    font-size: 150%;
    color: #fff;
    animation: fadeIn 1s ease-in-out infinite alternate-reverse;
  }

  .title-line {
    width: 100%;
    height: 10px;
    background-color: #fff;
    margin-top: 10px;
    -moz-box-align: baseline;
  }

  .button-container {
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 20px;
  }

  .custom-button {
      background-color: #fff;
      color: #346bb3;
      border: 2px solid #fff;
      border-radius: 15px;
      padding: 10px 20px;
      text-decoration: none;
      font-family: 'Lexend Deca';
      font-size: 25px;
      transition: transform 0.3s;
      display: inline-block;
      margin-bottom: 10px;
      margin-left: 5px;
      margin-right: 10px;
  }

  .advise {
    text-align: center;
    font-family: 'M PLUS Rounded 1c';
    font-size: 150%;
    color: #fff;
    border: 5px solid white;
    padding: 30px;
    display: block;
    border-radius: 15px;
    margin-top: 40px;
    margin: 40px auto;
    max-width: 100%;
  }

  .advise link {
    color: rgb(255, 165, 0);
    background-color: transparent;
    text-decoration: none;
  }

  .subtitle2 {
    text-align: center;
    font-family: 'M PLUS Rounded 1c';
    font-size: 150%;
    color: #fff;
    margin-top: 30px;
    margin: 30px auto;
    max-width: 75%;
  }

  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    background-image: linear-gradient(#346bb3, #000000);
  }

  .header {
    padding: 30px;
    font-size: 40px;
    text-align: center;
    background: white;
  }

  .posts-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin: 40px 20px;
  }
  
  .post-card {
      background-color: rgba(255, 255, 255, 0.1);
      border: 3px solid #fff;
      border-radius: 20px;
      width: 300px;
      overflow: hidden;
      transition: transform 0.3s;
      color: #fff;
      font-family: 'M PLUS Rounded 1c';
  }

  .post-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-bottom: 2px solid #fff;
  }
  
  .post-content {
      padding: 15px;
  }
  
  .post-title {
      font-size: 1.5rem;
      margin-bottom: 10px;
  }
  
  .post-excerpt {
      font-size: 1rem;
      margin-bottom: 15px;
  }
  
  .read-more {
      text-decoration: none;
      color: #ffa500;
      font-weight: bold;
      transition: color 0.3s;
  }

  .read-more:hover {
    color: #fff;
  }

  .text-box {
    border: 5px solid #fff;
    padding: 25px;
    margin-top: 50px ;
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 20px;
    color: white;
    font-family: 'M PLUS Rounded 1c';
    background-color: transparent;
    border-radius: 15px;
    text-align: center;
    font-size: larger;
  }
  
  .text-box h1 {
    margin-bottom: 30px;
  }

  .instructions{
    margin-top: 30px;
    text-align: center;
    font-family: 'M PLUS Rounded 1c';
    font-size: 150%;
    color: #fff;
  }

  .local-icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
  }

  div.gallery {
    border: 1px solid #fff;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 20px;
    border-width: 5px;
    margin-left: 0px;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  div.gallery img {
    width: 100%;
    height: auto;
    border-radius: 14px;
  }
  
  * {
    box-sizing: border-box;
  }

  .gallery {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }

  
  .projects-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
  }

  .responsive {
  flex: 0 1 250px;
  max-width: 300px;
  min-width: 220px;
}

  .footer {
    background-color: transparent;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: auto;
  }

  .footer-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }

  .footer-icon {
    color: #fff;
    text-decoration: none;
    margin: 0 20px;
    font-size: 40px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .desc {
    text-align: center;
    color: #fff;
    padding: 15px;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    font-size: 1rem;
    line-height: 1.4;
  }
