body {
    background-color: #f7f7f8 !important;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    text-align: center;
    /* Center text within the body */
}

/* Center the h1 element */
h1 {
    margin: 0;
    padding-top: 20vh;
    padding-bottom: 2.5vh;
    /* Remove default margin to center vertically */
}

/* Center the image */
img {
    display: block;
    /* Remove inline image spacing */
    margin: 0 auto;
    /* Center the image horizontally */
    filter: sepia(30%) grayscale(30%) brightness(100%) contrast(80%);

    border-radius: 5px;
}

/* Center the horizontal list */
ul.horizontal-list {
    list-style-type: none;
    /* Remove default list bullets */
    padding: 0;
    /* Remove default padding */
    text-align: center;
    /* Center list items horizontally */
}

ul.horizontal-list li {
    display: inline;
    /* Display list items horizontally */
    margin-right: 5px;
    /* Adjust spacing between list items */
}

.credit {
    font-style: italic;
    padding-top: 20vh;
}