html, body {
    padding: 0;
    margin: 0;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #333333;
    background-color: #ffffff;
}

.container {
    padding: 0 15px;
    max-width: 600px;
}

.content {
    padding: 15px;
}

.bold {
    font-weight: bold;
}

.content a {
    color: dimgrey;
    text-decoration: underline;
    transform: scale(1);
    transition: 0.15s ease all;
}

.content a:hover {
    background-color: dimgrey;
    padding: 2px;
    color: #ffffff;
    transform: scale(1.05);
}

ul {
    list-style-type: square;
}

li {
    margin: 10px;
}

.list a {
    width: 100%;
}

.subtitle {
    font-size: 14px;
    font-weight: bold;
    float: right;
    padding-right: 5px;
}

.subheading {
    font-size: 12px;
    font-weight: bold;
    font-style: italic;
    margin: 0;
}

.item_date {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
    float: right;
}

.item_title {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.item_title h1 {
    flex: 1;
}

noscript {
    display: block;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    padding: 10px;
    margin: 10px 0;
}

.lgbt_footer {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
}

.lgbt_footer_img {
    width: 16px;
}

.lgbt_footer_text {
    font-size: 12px;
    margin: 5px;
    flex-basis: 100%;
    text-align: center;
    font-style: italic;
    color: #999;
}

/* Selector for external URLs to display a "off-site" icon, as well as a manual class for weird edge-cases */
.external_link,
a[href^="http"]::after,
a[href^="https://"]::after
{
    content: "";
    width: 8px;
    height: 8px;
    margin-left: 4px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8.636 3.5a.5.5 0 0 0-.5-.5H1.5A1.5 1.5 0 0 0 0 4.5v10A1.5 1.5 0 0 0 1.5 16h10a1.5 1.5 0 0 0 1.5-1.5V7.864a.5.5 0 0 0-1 0V14.5a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h6.636a.5.5 0 0 0 .5-.5z'/%3E%3Cpath fill-rule='evenodd' d='M16 .5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0 0 1h3.793L6.146 9.146a.5.5 0 1 0 .708.708L15 1.707V5.5a.5.5 0 0 0 1 0v-5z'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;  
} 


.darkmode-toggle {
    font-size: small;
    content: "";
    width: 18px;
    height: 18px;
    background-image: url("/assets/images/moon.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    float: right;
}

/* Media Queries below: */
@media only screen and (max-width: 600px) {
    .item_title {
        flex-direction: column;
    }
    .item_title h1 {
        font-size: 1.6em;
    }
}