/*
Theme Name: Glb.ee Theme v2
Author: Glb.ee
Description: Glb.ee theme v2
Version: 2.0.0
*/

@import "styles/blog-page.css";
@import "styles/post-page.css";
@import "styles/header.css";
@import "styles/404.css";
@import "styles/footer.css";

@font-face {
    font-family: 'Inter Regular';
    src: url('assets/fonts/Inter-Regular.ttf');
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    background: linear-gradient(117.57deg, #0a0a0a -0.48%, #0a0a0a 114.27%);
    font-family: 'Inter Regular', sans-serif;
}

body * {
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter Regular', sans-serif;
    margin: 0;
}

.page-container {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
    min-height: calc(100vh - 118px);
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-content {
    color: #ffffff;
}

.page-title {
    font-size: 30px;
    line-height: 32px;
    font-weight: 700;
    color: rgb(214, 215, 227);
}

.no-content {
    margin-top: 50px;
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: rgb(214, 215, 227);
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    border: none;
    background: #d6dee1;
}

::-webkit-scrollbar-thumb {
    background: #303030;
    border-radius: 2px;
    height: 30px;
}

@media (max-width: 567px) {
    .page-container {
        min-height: calc(100vh - 134px);
    }
}