* {
  box-sizing: border-box;
}
body {
    background-color: #282828;
    color: #EBDBB2;
    text-align: center;
}
hr {
    color:#928374;
}

.main {
    h1,h2,h3 {margin-bottom: 5px;}
    padding-bottom: 10px;
    /*border-bottom: 1px solid #EBDBB2;*/
}

.layout {
    display: flex;
    justify-content: center;
}

.column {
    width: 90%;
    /* Use most of the screen on small screens */
}

@media (min-width: 900px) {
    .column {
        width: 60%;
        /* Smaller width on medium screens */
    }
}

@media (min-width: 1500px) {
    .column {
        width: 40%;
        /* Minimal width on large screens */
    }
}

.home-post-list {
    list-style-type: none;
}
.post-content {
    text-align: justify;
    /*width: min(100%,50rem);*/
    img {
        /* max-height: 70%; */
        max-width: 100%;
    }
}

.post-list {
    display: grid;
    /*justify-content: left;*/
    padding: 0;
    width: 100%;
    list-style-type: none;
    list-style-position: inside;
}


.post-list-entry {
    text-align: justify;
    border-radius: 10px;
    padding: 10px 20px 10px 20px;
    margin: 5px;
    border: 2px solid transparent;
    color: #EBDBB2;
    background-color: #333333;
    box-shadow: 5px 5px #202020;

    li {
        max-height: 30%;
    }
    div {
        display: flex;
        justify-content: space-between;
        border-bottom: 1px #EBDBB2 solid;
        margin: 0;
        height: 45px;

        h3,
        p {
            padding: 0;
            text-align: right;
        }
    }
}

.post-list-entry:hover {
    animation: fadein 0.1s;
    border: 2px solid #FABD2F;
}

@keyframes fadein {
    from {
    border: 2px solid #FABD2F00;
}
    to   { 
    border: 2px solid #FABD2F;
}
}


    a.recent-post-link {
        /*padding: 150px;*/
        color: #EBDBB2;
        text-decoration: none;
    }

    a.recent-post-link:visited {
        color: #EBDBB2;
    }

    a.recent-post-link:hover {
        color: #FABD2F;
    }
.recent-post {
        display: flex;
        justify-content: space-between;
        /*border-bottom: 1px #EBDBB2 solid;*/
        margin: 0;
        height: 45px;

        h3,
        p {
            padding: 0;
            text-align: right;
        }
        }
.pub-date {
    text-align: right;
}
.connect-list {
    text-align: justify;
    li {
        display: flex;
        justify-content: space-between;
        padding: 5px;
    strong {
        text-align: left;
    }
    a {
        text-align: right;
    }
    }
}


.footer {
    border-top: 1px solid #EBDBB2;
}

ul {
    list-style-type: circle;
    li {
        padding-bottom:10px;
    }
}

a {
    color: #FABD2F;
    text-decoration: none;
}

.header {
    float: center;
}

.text {
    font-size: 16pt;
}

ul.bar {
    list-style-type: none;
    display: inline-block;
    margin: 0;
    padding: 0;
    overflow: hidden;
    /*background-color: #333333;*/
    border: 0px solid;
    border-radius: 10px;
    height: 5%;
    align-items: center;
    /*box-shadow: 5px 5px #252525;*/
    font-weight: bold;
}

li.bar-item {
    float: left;
    display:flexbox;
    text-align: center;
    padding: 10px 2vw;
    /*width: 20%;*/
    .icon-button {
        padding: 5px;
    }
    img {
        height: 30px;
        background-color: #EBDBB2;
        padding: 5px;
        border-radius: 10px;
    }

    a {
        /*padding: 150px;*/
        color: #EBDBB2;
        text-decoration: none;
    }

    a:visited {
        color: #EBDBB2;
    }

    a:hover {
        color: #FABD2F;
    }
}
.pagination-default {
    align-items: center;
    list-style-type: none;
    display: inline-block;
    text-align: justify;
}
.page-item {
    font-size:16pt;
    float: left;
    margin: 0px 5px 0px 5px;
    a {
        padding: 0px 5px 0px 5px;
        font-weight: bold;
        color: #EBDBB2;
    }
}
.page-item.active {
    a {
    color: #282828;
    border-radius: 5px;
    background-color: #FABD2F;
    }
}
.page-item.disabled {
    a {
        color: #928374;
    }
}
code { 
    width: 100%;
    padding: 10px;
    padding-left: 0px;
    padding-right: 0px;
    background-color: #202020;
}
.ava {
border-radius: 100px;
max-height: 30%;
}
.highlight {
    padding: 0px 10px;
    border: 2px #928374 solid;
    font-size: 12pt;
    span {
    background-color: #202020;
    }
    background-color: #202020;
    border-radius: 10px;
}
