:root {
    --sunday: #0592ff;
    --monday: #1c9dff;
    --tuesday: #209fff;
    --wednesday: #31a6ff;
    --thursday: #57b7ff;
    --friday: #8bcbfc;
    --saturday: #c3e5ff;
    /* 
    --sunday: rgba(205, 201, 214, 1);
    --monday: rgba(203, 209, 219, 1);
    --tuesday: rgba(160, 187, 216, 1);
    --wednesday: rgba(79, 107, 117, 1);
    --thursday: rgba(21, 51, 48, 1);
    --friday: rgba(21, 51, 48, 1);
    --saturday: rgba(21, 51, 48, 1);
    */
}

html {
    font-family: "Alegreya", "Open Sans";
    color: #666;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.container {
    max-width: 900px;
    min-width: 320px;
    margin: 10px auto;
}

.section {
    float: left;
    width: 48%;
    padding: 1%;
}

.chapter {
    float: left;
    width: 35px;
    height: 35px;
    border: 2px solid #e4e4e4;
    text-align: center;
    margin: 2.5px;
    line-height: 35px;
    cursor: pointer;
    border-radius: 3px;
}

.chapter:hover {
    background: #e4e4e4;
}

.chapter.read {
    background: #57b7ff;
    border: 2px solid #57b7ff;
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}

.chapter.read.sunday    { background-color: var(--sunday); border: 2px solid var(--sunday); }
.chapter.read.monday    { background-color: var(--monday); border: 2px solid var(--monday); }
.chapter.read.tuesday   { background-color: var(--tuesday); border: 2px solid var(--tuesday); }
.chapter.read.wednesday { background-color: var(--wednesday); border: 2px solid var(--wednesday); }
.chapter.read.thursday  { background-color: var(--thursday); border: 2px solid var(--thursday); }
.chapter.read.friday    { background-color: var(--friday); border: 2px solid var(--friday); }
.chapter.read.saturday  { background-color: var(--saturday); border: 2px solid var(--saturday); }

h1 small {
    font-size: 65%;
    font-weight: 400;
    line-height: 1;
    color: #888;
}

h3 {
    margin-top: 50px
}

.clear {
    clear: both;
}

.copyright {
    clear: both;
    margin-top: 20px;
    text-align: center;
    color: #d2d2d2;
}

.copyright a {
    font-weight: 700;
    color: #d2d2d2;
}

@media (max-width: 600px) {
    .section {
        float: none;
        width: 100%;
    }
}