/*
Theme Name: Blog theme
Text Domain: Blog-theme
Version: 1.0
Description: A personalised blog theme
Tags: Blog
Author: Zain Sattar

*/
body {
    font-family: 'Raleway', sans-serif;
}
h1 {
    font-size: 2em;
    font-weight: bolder;
}
h2 {
    font-size: 1.5em;
    font-weight: bolder;
}
h3 {
    font-size: 1.17em;
    font-weight: bolder;
}
h4 {
    font-size: 1em;
    font-weight: bolder;
}
h5 {
    font-size: 0.83em;
    font-weight: bolder;
}
h6 {
    font-size: 0.75em;
    font-weight: bolder;
}

.customScreen {
    min-height: calc(100vh - 100px);
}

.category-list {
    display: inline; /* Display categories on the same line */
    margin: 0; /* Optional: Adjust margin as needed */
    padding: 0; /* Optional: Adjust padding as needed */
}

.category-list a {
    text-decoration: none;
    background-color: #140951;
    padding: 5px 8px;
    border-radius: 15px;
    margin-right: 4px; /* Add some spacing between categories */
    color: #ffffff;
}
.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
}
.overlay {
    position: fixed;
    top: 50px; /* Adjust as needed */
    right: -100vw;
    width: 100%;
    height: 100vh; /* Adjust as needed */
    background-color: rgba(255, 255, 255, 1);
    justify-content: center;
    align-items: center;
    z-index: 999;
    transition: right 0.3s ease-in-out;
}
  

.footer {
    background-color: #f9f9f9;
}
.single-post-header {
    height: 80vh; /* Adjust as needed */
}

.posts-container {
    display: flex;
    flex-wrap: wrap;
}

.post-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    width: 100%;
}

.post {
    width: calc(50% - 10px); /* Adjust spacing as needed */
    /* Other post styles */
}

.search-container {
    display: flex;
    align-items: center; /* Vertically center elements */
}

.input-button-container {
    display: flex;
    align-items: center; /* Vertically center input and button */
}


@media (min-width: 768px) {
    .sticky-left {
        position: sticky;
        top: 0;
        height: 100vh;
    }
    .flex-md-row {
        flex-direction: row;
    }
}