html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    margin-top: 100px;
}

footer {
    margin-top: auto;
}

.postContent{
	max-width: 57rem;
}

.postContent p{
	font-size: 1rem;
    line-height: 1.6rem;
    color: #303030;
    margin: 1.5rem 0;
    text-align: left;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
    font-family: "DrukTextWideTT", Arial, sans-serif;
	color: #062066;
}

.postContent h2{
	font-size: 2.6rem !important;
	line-height: 3rem;
}

.postContent h3{
	font-size: 1.8rem;
	line-height: 2rem;
	margin: 1.5rem 0;
}
.postContent h5{
	font-size: 1.2rem;
    line-height: 1.4rem;
    margin: 1rem 0;
	margin-top: 2.5rem;
}

.postContent ul, .postContent ol {
    margin: 0.2rem 0 5px 40px;
    padding: 0;
}

.postContent ul li, .postContent ol li{
	margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.4rem;
    color: #303030;
}

.postContent ul li{
    list-style-type: circle;
    color: #303030;
	margin-bottom: 1.5rem;
}

.breadcrumbs{
    margin-top: 1rem;
}
.breadcrumbs ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.breadcrumbs li {
    margin-right: 8px;
}

.breadcrumbs li::after {
    content: "›";
    margin-left: 8px;
    color: #888;
}

.breadcrumbs li:last-child::after {
    content: "";
}
.breadcrumbs li a, .postContent a{
    color: #0e63c9;
    font-weight: bold;
    position: relative;
}
.breadcrumbs li a:after, .postContent a:after{
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    height: 1px;
    background-color: none;
    bottom: 0.5rem;
    webkit-transition: all 0.2s ease-out 0.1s;
    transition: all 0.2s 
    ease-out 0.1s;
}
.breadcrumbs li a:hover:after , .postContent a:hover:after{
    bottom: -0.1rem;
    background-color: #0e63c9;
}
.gallery a img{
    padding: 5px;
    background: white;
    border: 1px solid silver;
    margin: 10px;
}

.postContent .gallery a:after{
	display: none;
}
	
@media only screen and (max-width: 480px) {
    .gallery{
        text-align: center;
    }

    .gallery a img, .gallery p a img {
        width: 90% !important;
        height: auto !important;
    }
}