html,
body {
  min-height: 100vh;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* grid-gap: 5rem; */
  /* padding: 10px; */
  margin: 0 auto;
}
.grid-item {
  color: #2e333d;
  padding: 20px;
  font-size: 20px;
}
@media (max-width: 600px) {
  .grid-container {
    grid-template-columns: 1fr;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  padding-top: 60px;
}

.modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

ul {
  list-style: none;
  margin-left: 0;
}

.grid-item li::before {
  content: url("/images/pdf.svg"); /* Replace with your image path */
  display: inline-block; /* Ensures it acts like an image */
  width: 16px; /* Adjust width as needed */
  height: 16px; /* Adjust height as needed */
  margin-right: 8px; /* Adds space between the image and the text */
}
#bursary-award-list li::before {
  content: url("/images/img.svg"); /* Replace with your image path */
  display: inline-block; /* Ensures it acts like an image */
  width: 16px; /* Adjust width as needed */
  height: 16px; /* Adjust height as needed */
  margin-right: 8px;
}

li {
  margin-left: 0;
}
