main section:first-of-type p {
    margin-bottom: 0.5rem;
}
main h4 {
    margin-top: 1.4rem;
    margin-bottom: 0.2rem;
}
main h3 {
    font-style: italic;
    margin-top: 1rem;
    margin-bottom: 0.8rem;
    color: #005;
    text-align: center;
}
.iconsize {
    height: 50px;
    width: 50px;
    flex-shrink: 0;
}
.title-pill {
    width: 65%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    background-image: linear-gradient(to bottom, #007bff, 80%, #b8d9ff);
    color: #dddddd;
    margin-top: 30px;
    margin-bottom: 25px;
    box-shadow: 2px 2px 10px 0px #ffffff;
    border: 2px solid #84befc;
    border-radius: 90px;
}
.title-pill h3 {
    color : white
}
.articles-table {
    width: 90%;
    border-collapse: collapse;
    margin: 1rem auto;
}
.articles-table td {
    border: 1px solid #007bff;
    background-color: #e0e0e0;
    padding: 0;
}
.articles-table a {
    display: block;
    padding: 0.75rem;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.2s ease-in-out;
}
.articles-table a:hover,
.articles-table a:active {
    background-color: #007bff;
    color: #e0e0e0;
}
main ul {
    list-style-type: disc;
    list-style-position: inside;
    padding-left: 1.2rem;
    margin-top: 0.3rem;
}
ul ul {
    list-style-type: none;
    margin-bottom: 0.6rem;
}
.topspace {
    margin-top: 0.6rem;
}
main h5,
.textstyle-b {
    font-size: 0.9rem;
    font-style: italic;
    color: #333;
}
main h3+h5 {
    text-align: center;
}
main section:last-of-type p:last-of-type {
    margin-bottom: 2rem;
}
.xlink a:link {
    color: #1f547c;
}
.xlink a:visited {
    color: #1f547c;
}
.xlink a:hover {
    color: #1a1e22;
}
@media (max-width: 768px) {
    .title-pill {
        width: 95%;
    }
}
@media (prefers-color-scheme: dark) {
    .title-pill {
        box-shadow: 2px 2px 10px 0px #aaaaaa;
        border: 2px solid #808080;
    }
    .xlink a:link {
        color: #4cb2ff;
    }
    .xlink a:visited {
        color: #4cb2ff;
    }
    .xlink a:hover {
        color: #c2e5ff;
    }
    main h5,
    .textstyle-b {
        color: #cacac7;
    }
    .title-pill {
        background-image: linear-gradient(to bottom, #222222, 80%, #666666);
        box-shadow: 2px 2px 10px 0px #eeeeee;
        border: 2px solid rgb(160, 160, 160);
    }
}