body, html {
  /* height: 100%; */
  background-color: #2a2829;
  color: #d0d1ce;
  font-family: sans-serif;
}

h1, h1, div, p {
  color: #d0d1ce;
}

img {
  width: 75%;
  height: auto;
  opacity: 0.6;
}

.bg {
  /* The image used */
  /* background-image: url("assets/entropiqx1.png"); */

  /* Full height */
  /* height: 100%; */

  /* Center and scale the image nicely */
  /* background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #2a2829; */
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
  }

  .grid-item {
    /* border: 1px solid #ccc; */
    border: 0;
    border-radius: 8px; /* Added for softer corners */
    padding: 20px;
    /* Flexbox for easy centering */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center; /* Fallback and ensures text is centered if flex fails */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }

  .grid-item:hover {
    /* Elevate the item slightly */
    transform: translateY(-5px);
    /* Add a shadow underneath for depth */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    /* Optional: Add a subtle background change */
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background-color: rgba(255, 255, 255, 0.05);
  }

  .grid-item svg {
    width: 50px;
    height: 50px;
    margin-bottom: 15px; /* Space between icon and header */
    /* color: #007bff; */ /* A nice blue for the icons */
  }

  h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2em;
  }

  p {
    font-size: 0.9em;
    line-height: 1.5;
  }

  /* This media query makes the grid responsive */
  @media (max-width: 768px) {
    .grid-container {
      grid-template-columns: 1fr; /* Changes to a single column layout */
    }
  }