@font-face {
    font-family: "Hack";
    src: url("/fonts/HackNerdFontPropo-Regular.ttf");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "Proggy";
    src: url("/fonts/ProggyCleanNerdFontPropo-Regular.ttf");
}


:root {
    --background: #181818;
    --background-bars-selected: #4a4a4a;
    --foreground: #00ff4c;
    --links: #32ff7e;

    font-family: "Hack";
    text-align: justify;
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 150%;
    hyphens: auto;
}

body {
    background-color: var(--background);
    color: var(--foreground);
}
h1.title {
    font-family: "Proggy";
    text-align: center;
    font-size: 90px;
}
.title {
    font-family: "Proggy";
}
a {
    text-decoration: none;
    color: var(--links);
    font-family: "Proggy";
    font-size: 32px;
}

.topbar {
    overflow: hidden;
    border-color: var(--foreground);
    background: black;
    height: 48px;
    border: 1px solid;
    border-radius: 24px;
    display: flex;
    flex-direction: row-reverse;
    font-family: "Proggy";
    font-size: 26px;
}
.topbar a {
    float: left;
    display: block;
    color: var(--white);
    text-align: center;
    line-height: 1.9;
    padding: 0px 16px;
    text-decoration: none;
    font-size: 25px;
}
.topbar a:hover {
  background-color: var(--background-bars-selected);
  color: var(--black);
}
.topbar a.icon {
    display: none;
    width: 30px;
}
.topbar.smartphone {
    position: relative;
    overflow: visible;
    display: block;
    opacity: 100%;
}
.topbar.smartphone a {
    float: none;
    display: flex;
    text-align: left;
    background-color: var(--background);
    border-color: var(--foreground);
    position: relative;
    z-index: 1000;
    opacity: 90%;
}
.topbar.smartphone a:hover {
  background-color: var(--background-bars-selected);
  color: var(--black); 
}


.main-content {
    max-width: 60%;
    min-height: 100vh;
    margin: auto;
}
@media only screen and (max-width: 1100px) {
    .main-content {
        max-width: 90%;
    }
    .topbar {
        flex-direction: row;
    }
    .topbar a {
        display: none;
    }
    .topbar a.icon {
        display: flex;
        flex-direction: row-reverse;
    }
    .topbar.smartphone a {
        display: none;
        text-align: left;
        padding: 10px;
        overflow: visible;
        display: flex;
        flex-direction: row;
    }
    .topbar.smartphone a.icon {
        display: flex;
        flex-direction: row-reverse;
    }
}


div.center {
    margin: auto;
    text-align: center;
}
input {
    width: 300px;
    height: 30px;
}

.bottombar {
    font-size: 18px;
    overflow: hidden;
    min-height: 90px;
    border: 30px;
    border-style: solid;
    border-color: transparent;
    border-radius: 5px;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
}
.bottombar-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
@media only screen and (max-width: 1000px) {
    .bottombar-content {
        flex-direction: column;
    }
}


.dashboard input {
    width: 40%;
    height: 50px;
    font-family: "Proggy";
    font-size: 40px;
    color: var(--foreground);
    background: black;
    border-color: var(--foreground);
    border-radius: 25px;
}

.preview {
    border: 1px solid var(--foreground);
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.preview:hover {
    background-color: var(--background-bars-selected);
}

.article-content {
    padding-top: 100px;
    padding-bottom: 50px;
}

.tag {
    margin: 10px;
    padding: 10px;
    border: 1px solid var(--foreground);
    border-radius: 100px;
    font-family: "Proggy";
    hyphens: none;
}

.login-input {
    margin: 1px;
    border: 1px solid var(--foreground);
    background: var(--background);
    color: var(--foreground);
    font-family: "Proggy";
    font-size: 20px;
}

table {
    width: 100%;
    hyphens: none;
    line-break: anywhere;
    font-family: "Proggy";
}
tr {
    vertical-align: top;
}

code {
    hyphens: none;
    line-break: anywhere;
    font-family: "Proggy";
    letter-spacing: 0px;
    line-height: 0px;
}
