.site {
    display: flex;
    flex-flow: column;
}

.container {
    display: flex;
    flex-direction: column;
    padding-top: 2rem;
    align-items: center;
}

.entries {
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
    justify-content: center;
}

.post {
    display: flex;
    flex-direction: column;
    padding-bottom: 2rem;
    line-height: 1.5;
    max-width: 300px;
    border-radius: 20px;
    border: solid 1px #dfdfdf;
    margin: 1rem;
    padding: 1rem;
}

@media (max-width: 730px) {
    .post {
        max-width: none;
    }
}

.post > h2,
.post > h1{
    margin: 0;
    margin-bottom: 0.5rem;
}

.post > h2 a{
    text-decoration: none;
}

.post > small,
.post > .postmetadata {
    opacity: 0.7;
    font-size: 0.8rem;
    display: inline-block;
    margin: 0;
}

/* Singular styles */

.wp-singular .post {
    padding: 0;
    max-width: 900px;
    border: none;
}

.wp-singular .entry {
    padding: 0 2rem;
}

.wp-singular .post-title {
    font-size: 3rem;
    font-weight: 600;
    margin: 0;
    font-family: "Libre Baskerville";
    font-style: italic;
    color: #3d3532;

    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
}

.wp-singular .post-title::after {
    content: "~";
    font-size: 2rem;
    opacity: 0.3;
    display: flex;
    align-items: center;
    font-style: italic;
    font-weight: 500;
}

.wp-singular .post.custom-template {
    max-width: unset;
}
.wp-singular .post.custom-template .entry {
    padding: 0;
}

.none {
    display: flex;
    flex-flow: column;
    align-items: center;
}

.none p {
    font-size: 1.5rem;
}


.none .bkr_search_form {
    display: flex;
    flex-flow: row;
    border: solid 1px #dfdfdf;
}

.none .bkr_search_form input {
    border: none;
    margin: none;
    outline: none;
    padding: 1rem;
    font: inherit;
    letter-spacing: inherit;
    font-weight: inherit;
    display: block;
}

.none .bkr_search_form input[type=submit] {
    background-color: #efefef;
    border-color: #dfdfdf;
    border-left: solid 1px #dfdfdf;
    color: #666666;
    transition: color 0.3s;
    transition: background-color 0.3s;
}

.none .bkr_search_form input[type=submit]:hover {
    cursor: pointer;
    background-color: #dfdfdf;
    color: #982733;
}
