.blogPost {
    background-color: white;
    padding: 5px;
    margin-top: 20px;
    min-width: 300px;
    max-width: 80%;
    min-height: 300px;
    border-radius: 5px;
}

.blogTitle {
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.riadok {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blogPost {
    margin: 2em 5%;
    text-align: center;
    width: 90%;
    background-color: rgba(255, 255, 255, 0.65);
    font-size: 1.1em;
    padding: 2em 5em 2em 5em;
    border-radius: 0.7em;
    filter: contrast(0.7) brightness(1.2);
    box-shadow: 0 0 1em #00000023;
}

.blogPost button {
    margin-top: 1em;
    background: #f6c035;
    border: none;
    padding: 0.5em 1em;
    border-radius: 0.3em;
    transition-duration: 200ms;
    cursor: pointer;
}

.blogPost button:hover {
    margin-top: 1em;
    background: #f6bf35c9;
    transform: scale(1.1);
    transition-duration: 200ms;
}

.blogPost:hover {
    box-shadow: 0 0 1em #00000045;
    transition-duration: 150ms;
}

pre {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    white-space: pre-line;
}

@media screen and (max-width: 1050px) {
    .blogPost {
        width: 70%;
    }  
}

@media screen and (max-width: 700px) {
    .blogPost {
        width: 70%;
        padding: 5% 10%;
    }  

    .images {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .blogPost img{
        width: 100% !important;
    }

    .blogPost img:not(:last-child){
        margin-bottom: 0.5em;
    }
}

.blogPost img {
    width: 30%;
    height: 12em;
    object-fit: cover;
}

#createdDate {
    font-size: 0.8em;
    margin-right: auto;
    width: fit-content;
}

.hidden{
    display: none;
}

.category_select_menu {
    background-color: #EFF4C3;
    width: 360px;
    text-align: center;
    padding: 10px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

.category_select_menuItem {
    width: 120px;
    padding: 8px;
    color: black;
}

.category_select_menuItem:hover {
    color: rgb(49, 0, 0);
    background-color: #d0df53;
}