body {
    max-width: 650px;
    margin: 40px auto;
    font-size: 18px;
    background-color: #444;
    color: white;
    line-height: 1.6;
    padding: 0 10px;
}

h2 {
    line-height: 1.2;
}

h3 {
    line-height: 1.2;
}

ul {
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

a {
    color: orange;
}

a:visited {
    color: orange;
    text-decoration-color: orange;

}

.thumbnail-link {
    text-decoration: none;

    span {
        color: white;
    }

    object, img {
        border: 1px solid gray;

        max-width: 100%;
        max-height: 100%;
        object-fit: cover;
    }
}

.thumbnail-link:hover {
    filter: grayscale(50%);
}