html {
    font-family: times;
    font-size: 16px;
    background-color: rgb(244, 244, 244);
}

body {
    line-height: 0 !important;
}

a {
    color: black;
    text-decoration: underline;
}

.divText {
    padding-left: 20px;
    padding-bottom: 5px;
    padding-top: 7px;
    line-height: 1;
}

#heading {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: rgb(244, 244, 244);
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

img {
    width: 100%;
    height: auto;
}

@media (max-width: 1000px) {
  .image-grid {
    grid-template-columns: 1fr;
  }
}