    /* Box sizing */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    /* Resetting default margin */
    html,
    body {
      margin: 0;
    }

    /* Root font size */
    html {
      font-size: 62.5%;
      /* 1rem = 10px */
    }

    /* Body styles */
    body {
      font-family: Helvetica, Arial, sans-serif;
      font-size: 1.6rem;
      /* 16px */
      line-height: 1.6;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 2rem;
      /* Added padding to center the content */
    }

    header {
      text-align: center;
      /* Center the content horizontally */
      padding: 2rem;
      /* Add padding to create space around the header */
      background-color: #f0f0f0;
      /* Optional: Add a background color to the header */
    }

    /* Recipe list styles */
    #recipeList {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      /* Center the recipe cards */
      gap: 2rem;
      /* Add some space between recipe cards */
    }

    /* Recipe card styles */
    .recipe {
      width: calc(30% - 4rem);
      /* Adjust width as needed */
      margin-bottom: 2rem;
      padding: 1.5rem;
      /* Adjusted padding */
      border: 1px solid #ccc;
      border-radius: 5px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .recipe h3 {
      font-size: 2rem;
      /* 20px */
      margin-bottom: 1rem;
      text-align: center;
      /* Center the title */
    }

    .recipe p {
      font-size: 1.6rem;
      /* 16px */
      margin-bottom: 1rem;
      text-align: center;
      /* Center the text */
    }

    .recipe img {
      max-width: 100%;
      height: auto;
      margin-bottom: 1rem;
      display: block;
      /* Ensure images are centered */
      margin-left: auto;
      margin-right: auto;
    }

    .recipe a {
      font-size: 1.6rem;
      /* 16px */
      text-decoration: none;
      color: #007bff;
      /* Adjust link color as needed */
    }

    .recipe a:hover {
      text-decoration: underline;
    }