@import url('https://fonts.googleapis.com/css2?family=Onest&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Geist+Mono&display=swap');

body {
    background-color: #010B1B
}

#container {
    width: 80%;
    margin: 0 auto;
    border-radius: 10px;
}

#content {
    background-color: #0B1224;
    padding: 35px;
    border-radius: 30px;
    text-align: justify;
    display: flex;
    flex-direction: row;
}

#post-content {
    background-color: #0B1224;
    padding: 50px;
    border-radius: 30px;
    text-align: justify;
}

#divider {
    flex: 0.1;
}

@media only screen and (max-width: 700px) {
    #container {
        width: 90%;
    }

    #content {
        flex-direction: column-reverse;
    }

    #divider {
        margin-top: 40px;
    }
}


#header-title {
    color: rgb(255, 255, 255);
    font-size: 30px;
    font-weight: bold;
    font-family: 'Onest', sans-serif;
    margin-top: 50px;
    margin-bottom: 50px;
    text-decoration: none;
}

#header {
    flex-direction: row;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
}

#header-buttons a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 20px;
    margin-left: 40px;

}

#title {
    color: rgb(255, 255, 255);
    font-size: 30px;
    margin-bottom: 30px;
    margin-top: 0px;
    font-weight: bold;
    font-family: 'Onest', sans-serif;
}

.markdown-body {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    margin: 0;
    color: #FFFFFF;
    font-family: "Geist mono", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    word-wrap: break-word;
}

p,
li {
    color: rgb(184, 192, 207);
}

h1 {
    font-family: 'Onest', sans-serif;
    margin-top: 50px;
}

h2 {
    font-family: 'Onest', sans-serif;
    margin-top: 30px;
    font-size: 1.6em;
}

a {
    color: rgb(7, 171, 200);
}

pre {
    padding: 1.5em;
    border-radius: 8px;
    background-color: #1b2f3e;
}

code {
    font-size: 0.9em;
    color: #69d8d6;
    white-space: pre-wrap;
    /* preserves whitespace and wraps lines */
}

blockquote {
    border-left: 4px solid #3e6e7b;
    padding-left: 1em;
    margin-left: 0.5em;
    color: rgb(184, 192, 207);
}
