body {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 0;
    background: #121212;
    line-height: 1.6;
}

nav {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: #282a36;
    padding: 1em 0;
    text-align: center;
    border-bottom: 2px solid #44475a;
}

nav a {
    color: #f8f8f2;
    text-decoration: none;
    margin: 0 1em;
    font-weight: bold;
    transition: 0.3s ease;
    border-bottom: 2px solid transparent;
    font-size: 1rem;
}

nav a:hover {
    border-bottom: 2px solid #f8f8f2;
}

#content {
    width: 100%;
    max-width: 800px;
    margin: 6em auto 2em auto;
    padding: 2em;
    background: #282a36;
    border-radius: 12px;
    color: #f8f8f2;
}

#content h1 {
    font-size: 2rem;
}

#content h2 {
    font-size: 1.7rem;
}

#content h3 {
    font-style: italic;
}

#content h3,
#content li,
#content p {
    font-size: 1.2rem;
}

#content a {
    color: #8be9fd;
    transition: 0.3s ease;
}

#content img {
    margin-top: 1em;
    width: 100%;
    height: auto;
    max-width: 800px;
    border-radius: 12px;
}

#content img[alt="CLI"],
#content img[alt="GUI"]{
    width: 60%;
    height: auto;
    max-width: 400px;
    border-radius: 12px;
}

@media screen and (max-width: 600px) {

    #content {
        margin: 2em auto;
        width: 90%;
        padding: 1em;
    }

    #content h1 {
        font-size: 1.3rem;
    }

    #content h2 {
        font-size: 1.1rem;
    }

    #content h3,
    #content li,
    #content p,
    code {
        font-size: 0.8rem;
    }

    nav {
        padding: 0.5em 0;
    }

    nav a {
        margin: 0 0.6em;
        font-size: 0.8rem;
    }
}

/* Dracula Theme v1.2.5
 *
 * https://github.com/dracula/highlightjs
 *
 * Copyright 2016-present, All rights reserved
 *
 * Code licensed under the MIT license
 *
 * @author Denis Ciccale <dciccale@gmail.com>
 * @author Zeno Rocha <hi@zenorocha.com>
 */

.hljs {
    display: block;
    overflow-x: auto;
    padding: 1.5em;
    background: #1f1f1f;
    border-radius: 12px;
    border: #44475a 3px solid;
}

.hljs-built_in,
.hljs-selector-tag,
.hljs-section,
.hljs-link {
    color: #8be9fd;
}

.hljs-keyword {
    color: #ff79c6;
}

.hljs,
.hljs-subst {
    color: #f8f8f2;
}

.hljs-title,
.hljs-attr,
.hljs-meta-keyword {
    font-style: italic;
    color: #50fa7b;
}

.hljs-string,
.hljs-meta,
.hljs-name,
.hljs-type,
.hljs-symbol,
.hljs-bullet,
.hljs-addition,
.hljs-variable,
.hljs-template-tag,
.hljs-template-variable {
    color: #f1fa8c;
}

.hljs-comment,
.hljs-quote,
.hljs-deletion {
    color: #6272a4;
}

.hljs-keyword,
.hljs-selector-tag,
.hljs-literal,
.hljs-title,
.hljs-section,
.hljs-doctag,
.hljs-type,
.hljs-name,
.hljs-strong {
    font-weight: bold;
}

.hljs-literal,
.hljs-number {
    color: #bd93f9;
}

.hljs-emphasis {
    font-style: italic;
}
