#page-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 40px;
    margin-top: 50px;
    margin-bottom: 50px;
  }
  
  #page-title h2 {
    font-family: Akira;
    font-size: 60px;
    width: 34%;
    line-height: 55px;
    text-align: center;
    letter-spacing: 5px;
    margin: 0;
  }
  
  #page-title p {
    font-family: Inclusive;
    font-size: 20px;
    width: 35%;
    line-height: 22px;
    text-align: center;
    margin: 0;
  }

  #filter-div {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    margin-bottom: 10px;
  }

  .filters {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

  .filters button {
   font-family: Inclusive;
   font-size: 17px;
   text-decoration: none;
   color: black;
   margin: 0;
   padding: 5px 8px 5px;
   border-radius: 3px;
   cursor: pointer;
   user-select: none;
   background: none;
   border: none;
  }

  .filters .marked {
    color: white;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("../img/texture2-min.jpg");
    background-position: 100% 100%;
   }

  #year-filter {
    justify-content: start;
    padding-right: 20px;
  }

  #type-filter {
    justify-content: end;
    padding-left: 20px;
  }
  
  #full-div {
    width: 100%;
    min-height: 25vh;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 30px;
    margin: 0 auto;
    margin-bottom: 100px;
  }
  
  .project-plantilla {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: none;
    border-radius: 10px;
  }

  .show {
    display: inherit;
  }
  
  .project-plantilla img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
  }

  .project-plantilla .title {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
    gap: 0px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(.175,.685,.32,1.175); 
    border-radius: 10px;
  }

  .title p {
    font-family: Inclusive;
    color: white;
  }

  .title p:first-child {
    text-transform: uppercase;
    font-size: 28px;
    margin: 0px;
    margin-left: 20px;
  }

  .title p:last-child {
    font-size: 20px;
    margin: 0;
    margin-left: 20px;
    margin-bottom: 13px;
  }


  @media only screen and (max-width: 650px) {
    #filter-div {
      display: none;
    }

    #page-title h2 {
      font-size: 40px;
      width: 80%;
      line-height: 40px;
      letter-spacing: 1px;
    }
    
    #page-title p {
      width: 80%;
      line-height: 27px;
      font-size: 17px;
    }

    #full-div {
      gap: 30px;
      margin-bottom: 100px;
    }

    .project-plantilla {
      width: 100%;
      height: 250px;
    }

    .project-plantilla .title {
      width: 100%;
      height: 250px;
      opacity: 1;
      text-align: center;
      align-items: center;
      justify-content: center;
      z-index: 5;
      background-color: rgba(0, 0, 0, 0);
    }

    .project-plantilla img {
      object-fit: cover;
      height: 100%;
    }

    .title p:first-child {
      margin: 0px;
      margin-left: 0px;
      font-weight: bold;
        }
  
    .title p:last-child {
      display: none;
    }

  }