@font-face {
    font-family: "General Sans Semi Bold";
    src: url(fonts/GeneralSans-Semibold.otf);
  }

  @font-face {
    font-family: "General Sans Regular";
    src: url(fonts/GeneralSans-Regular.otf);
  }

  .navbar {
    background-color: transparent;
    font-family: "General Sans Semi Bold";
  }

  .navbar a {
    float: right;
    display: block;
    color: black;
    text-align: center;
    padding: 22px 60px 0 0;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .navbar a:hover {
    color: #0cce6b;
    cursor: pointer;
  }

  #headers {
    background-color: white;
  }

  .heading {
    padding-top: 80px;
  }

  h1 {
    font-family: "General Sans Semi Bold";
    margin-left: 170px;
    font-size: 35px;
  }

  h3 {
    font-family: "General Sans Regular";
    margin-left: 170px;
    color: grey;
  }

  .img-1 {
    width: 40%;
    height: auto;
    margin-top: 23px;
    margin-left: 180px;
    border-radius: 6px;
  }

  p {
    margin-top: 30px;
    line-height: 26px;
  }

  .img-head {
    display: flex;
  }

  .text {
    margin-left: 60px;
    margin-top: 12px;
    margin-right: 160px;
    font-family: "General Sans Regular";
  }

  .profile-card {
    display: flex; 
    align-items: center;
    margin-top: 9px;
    background-color: #f2f2f2;
    border-radius: 5px;
    padding: 10px;
    width: 178px;
  }

  .profile-img img {
    width: 35px;
    height: 35px;
    border-radius: 20%;
    border: 3px solid #0cce6b;
    margin-right: 20px; 
    margin-left: 4px;
    margin-top: 5px;
  }

  .profile-name {
    font-size: 15px;
    color: #333;
    font-family: "General Sans Semi Bold";
  }

  .article-date {
    font-family: "General Sans Regular";
    font-size: 13px;
  }

  .article {
    margin-top: 80px;
  }

  .article-img-1 {
    width: 40%;
    height: auto;
    margin-top: 23px;
    margin-left: 180px;
    border-radius: 6px;
  }

  .rec-1 {
    display: flex;
  }

  .body-text {
    font-family: "General Sans Regular";
    margin-left: 60px;
    margin-right: 160px;
    line-height: 26px;
    margin-top: 10px;
  }

  .restaurant-name {
    font-family: "General Sans Semi Bold";
  }

  .section-info {
    display: flex;
    align-items: center;
    height: 40px;
  }

  .food-type {
    margin-right: 20px;
    background-color: #0cce6b;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 20px;
  }

  .location {
    margin-right: 20px;
    background-color: #0cce6b;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 20px;
  }

  .price {
    margin-right: 20px;
    background-color: #0cce6b;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 20px;
  }

  hr {
        width: 92%;
        margin-top: 40px;
    }

  footer {
        font-family: "General Sans Semi Bold";
        padding: 30px;
        margin-left: 30px;
    }

  .project-link {
        float: right;
        margin-right: 26px;
    }

  .project-link a {
        text-decoration: none;
        color: black;
        transition: color 0.3s ease;
    }

  .project-link a:hover {
        color: #0cce6b;
    }

  .more-like-this {
    margin-left: 50px;
    font-family: "General Sans Semi Bold";
    margin-top: 50px;
  }

    .card-container {
    display: flex;
    flex-wrap: wrap;
    padding-left: 40px;
    padding-right: 40px;
    justify-content: space-around; 
    margin-top: 20px;
  }

  .card {
    background-color: white;
    width: 31.3%; 
    margin: 5px;
    margin-bottom: 25px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    transition: transform 0.2s;
  }

  .card:hover {
    transform: scale(1.03);
    cursor: pointer;
  }

  .card img {
    width: 100%;
    height: auto; 
    border-radius: 5px 5px 0 0;
  }

  .card-content {
    padding: 20px;
  }

  .card-title {
    font-family: "General Sans Semi Bold";
    color: #333;
    margin: 0;
  }

  .card-text {
    font-family: "General Sans Regular";
    color: #666;
    font-size: 0.9em;
  }

  #bottom-container {
    margin-top: 100px;
    background-color: #f7f7f7;
    padding: 0.2px;
  }

  .card-link {
    text-decoration: none;
  }
