/* <Global styles> */
body {
    margin: 0;
    font-family: Arial, sans-serif;

    /* <Change the background color of the entire page to white> */
    background-color: #ffffff;  /* You can use #ffffff for white */
  }
  
  /* <Ensure full viewport height and vertical centering> */
  .min-h-screen {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* <Header styles> */
  header {
    width: 100%; /* Ensure it spans the full width */
    text-align: center; /* Center align title and GitHub link */
  }
  
  /* <GitHub Link Container> */
  header .flex {
    display: flex;
    align-items: center;  /* <Align the icon and text vertically centered> */
    justify-content: center;
    
    /* <Adjust space between the icon and the text> */
    gap: 6px;  /* You can adjust this value for your preferred spacing */
  }
  
  .justify-center {
    justify-content: center;
  }
  
  .mt-2 {
    margin-top: 0.5rem; /* Adjust this to control space between title and GitHub */
  }
  
  .py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  
  .bg-white {
    background-color: #ffffff;
  }
  
  .shadow {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  /* <Title and GitHub text> */
  .text-gray-700 {
    color: #4a5568;
  }
  
  .text-gray-500 {
    color: #a0aec0;
  }
  
  .hover\:text-gray-800:hover {
    color: #2d3748;
  }
  
  /* <Description> */
  .description-container {
    margin-top: 25px; /* Space between the header and description */
  }
  
  .text-center {
    text-align: center;
  }
  
  .py-4 {
    padding-top: 1rem; /* Controls spacing around description */
    padding-bottom: 1rem;
  }
  
  /* <QR Grid Container> */
  .container {
    max-width: 1200px;
  }
  
  .py-8 {
    padding-top: 2rem; /* Adds space between description and QR codes */
  }
  
  /* <QR Grid Layout> */
  .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 items per row for horizontal layout */
    gap: 2rem; /* Space between QR cards */
  }
  
  /* <QR Code Card Styles> */
  .card {
    background-color: #f0f8ff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);   
    padding: 1.5rem;
    position: relative;
    text-align: center;

    /* Adjust the margin to align the cards properly */
    margin-top: -30px; /* Adjust top margin to move the box down */
    margin-left: 0px; /* Adjust left margin to move the box to the right */

    /* <Remove any outline or divider line that might appear in the middle> */
    border: none; /* This removes any border or line that might be contributing to the middle line issue */
  }

  /* <QR Grid Layout> */
  .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 items per row for horizontal layout */
    gap: 2rem; /* Space between QR cards */
    
    /* Add extra spacing if needed for a clean separation */
    padding: 0; /* Removes padding that might be creating extra lines or space */
  }
  
  .qr-container {
    background-color: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .qr-image {
    width: 200px; /* <QR Code width> */
    height: 200px; /* <QR Code height> */
  }
  
  .quote {
    position: absolute;
    font-size: 2rem;
    color: #cbd5e0;
    top: 10px;
    left: 10px;
  }
  
  .quote.reverse {
    top: auto;
    bottom: 10px;
    left: auto;
    right: 10px;
    transform: rotate(180deg);
  }
  