@font-face {
    font-family: 'jf_dot_ayu';
    src: url('/static/fonts/JF-Dot-Ayu18.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'not-jam-glasgow';
    src: url('/static/fonts/Not\ Jam\ Glasgow\ 13.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'yantramanav';
    src: url('/static/fonts/yantramanav-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
title {
    font-family: "jf_dot_ayu";
    color:aquamarine;
}

html, body {
    height: 100%;
    margin: 0;
    overflow: visible;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #151616;
    margin: 0;
}

footer {
    text-align: center;
}

h1, h2, h3, h4, h5, p, a{
    font-family: "jf_dot_ayu";
    color:aquamarine;
}
button {
    font-family: "jf_dot_ayu";
    color: black;
    background-color: aquamarine;
}

#navbar {
    display: flex;
    align-items: center;
    background-color: #333;
    background-position: left top;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    opacity: 0.9f;
    z-index: 1000;
    min-height: 42px;
    box-shadow: 0 4px 8px #0000005d;
}

.navbar {
    position: relative;
    z-index: 1000;
}

#navbar-right {
    display: flex;
    align-items: center;
    position: absolute;
    margin-left: auto;
    right: 0;
}

#navbar-pfp img {
    height: 40px;
    max-height: 100%;
    border-radius: 15%;
    width: auto;
    display: block;
    padding: 0;
    margin-right: 6px;
    margin-left: 4px;
}

#navbar a {
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 17px;
}

#navbar a:hover {
    background-color: #ddd;
    color: black;
}

#navbar a.active {
    background-color: #04AA6D;
    color: white;
}

#navbar-button {
    background-color: #333;
    color: #ddd;
    border: none;
    padding: 10px 20px;
    font-size: 17px;
    cursor: pointer;
}

#navbar-button:hover {
    background-color: #ddd;
    color: black;
}

.vertical-line {
    background-image: url('/static/images/vertical-line.png');
    height: 42px;
    display: inline-block;
    padding-left: 2px;
    padding-right: 2px;
}

/* Sticky class */
.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
}

.sticky + .main-content {
    padding-top: 42px;
}

.main-content {
    flex: 1;
    padding: 0px;
}

footer {
    background-color: #333;
    color: #ddd;
    text-align: center;
    padding: 10px;
}