body {
    background-color: #333; /* Dark background */
    color: #fff; /* White text */
    font-family: sans-serif; /* Sans-serif font */
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

.digest-list {
    list-style: none;
    padding: 0;
}

.digest-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px;
    border-bottom: 1px solid #555; /* Separator line */
}

.digest-item img {
    width: 80px;
    height: 80px;
    margin-right: 20px;
    object-fit: cover;
}

.digest-info {
    flex-grow: 1;
}

.digest-number {
    font-size: 0.9em;
    color: #ccc;
    margin-bottom: 5px;
}

.digest-title {
    font-size: 1.5em;
    font-weight: bold;
}

.header {
    font-size: 0.8em;
    color: #ccc;
    margin-bottom: 30px;
    text-transform: uppercase;
}