/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

body {
    font-family: 'Cormorant', serif;
    font-size: 20px;
    color: #38380e;
}

hr {
    border: 0;
    border-top: 1px solid  #e1e4e6;
}

a {
    color: #4a8bb2;
}

a:visited {
    color: #a0a3a5;
}

h1 {
    margin-bottom: 8px;
}

.post {
    margin: 0 auto;
}
@media screen and (min-width: 600px) {
    .post {
        max-width: 85%;
        margin: 0 auto;
    }
}

.post a {
    
}

.post__images img {
    max-width: 100%;
    max-height: 80vh;
}

@media screen and (min-width: 600px) {
    .post__images img {
        max-width: 50vw;
	max-height: 50vh;
    }
}


nav.pagination {
    margin: 20px auto;
}

.pagination a,
.pagination .current {
    padding: 10px;
}

.pagination a:hover {
    background-color: #e1e4e6;
}
