.crimeHero {
    background-image: url(/assets/CrimeCheckImage.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 2rem 0;
    height: 300px;
}

.crimeHeroHeading {
    color: #fff;
    font-size: 6rem;
    -webkit-text-stroke: 1px #000;
    text-align: center;
}

.articleSection {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 0;
    row-gap: 4rem;
}

.article {
    width: 90%;
    background-color: #eee;
    /* background-color: red; */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
}

.table {
    border-collapse: collapse;
    border: 2px solid rgb(140 140 140);
    font-family: sans-serif;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.thead {
    background-color: rgb(228 240 245);
}

.caption {
    caption-side: bottom;
    padding: 10px;
    font-weight: bold;
    font-size: 1.2rem;
}

th,
td {
  border: 1px solid rgb(160 160 160);
  padding: 8px 10px;
}

td:last-of-type {
  text-align: center;
}

tbody > tr:nth-of-type(even) {
  background-color: rgb(237 238 242);
}