.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.program > li {
    display: block;
    background-color: #e2e3e5;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
    border: black solid 1px;
    font-size: 1.15em;
  line-height: 1.7;
  text-align: justify;
}

li:hover {
    background-color: #132f78;
    color: white;
}

.programs-grid > li > a {
    padding: 1rem;

    color: inherit;
    display: block;
    height: 100%;
    width: 100%;
    text-decoration: none;
}

a:hover {
    color: inherit;
}