#main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 85%;
    margin: auto;
}

.comic {
    display: block;
    background-color: #000;
    padding: 10px;
}

.comic-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: #fff;
}

.comic-panels {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: calc(320px * 2 + 20px);
}

.comic-panels > * {
    margin: 5px;
}

#countdown {
    text-align: center;
}

#countdown-value {
    font-size: 1.2em;
    font-family: monospace;
    background: black;
    color: white;
}
