/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Hind&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hind&family=Poppins&display=swap');

:root {
    --button-radius: 5px;
}

/* Page */
html,
body {
    margin: 0;
    padding: 0;
    /* background-color: var(--bg-color); */
    /* color: var(--text-color); */

    /* font-family: 'Poppins', sans-serif; */
    /* line-height: 32px; */
    font-family: 'Hind', sans-serif;
    height: 100%;
}

#pageWrapper {
    display: flex;
    flex-flow: column;
    /* width: 100%; */
    height: 100%;
    color: var(--text-color);
    background-color: var(--bg-color);
    /* position: relative; */
    /* overflow: hidden; */
}

#pageContent {
    /* background-color: red; */
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    overflow: auto;
    /* position: relative; */
    /* transform: initial; */
    /* transform: translateZ(0); */
    width: 100%;
    height: 100%;
}

.button {
    cursor: pointer;
    color: var(--main-color);
    display: inline-block;
    border: 1px solid var(--main-color);
    border-radius: 5px;
    padding: 10px;
    /* margin: 20px; */
    text-decoration: none;
    user-select: none;
    /* text-align: center; */
}

.button:hover {
    color: var(--main-color-light);
    border: 1px solid var(--main-color-light);
}

a {
    text-decoration: none;
    color: var(--main-color);
    cursor: pointer;
    user-select: none;
}

a:hover {
    color: var(--main-color-light);
}

.entry:last-child {
    margin-bottom: 40px;
}

.noBottomMargin{
    margin-bottom: 0;
}

/* 404 Page */
.pageNotice {
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pageNotice h1 {
    color: var(--main-color);
    margin: 0;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-track {
    background: var(--scollbar-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--scollbar-fg);
}

::-webkit-scrollbar-corner {
    background: var(--scollbar-bg);
}