body {
    background-color: #1d1f21;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-weight: bold;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    color: #a3a3a3;
    font-size: 13px;
    padding: 1px 5px;
    transition: background-color 0.3s, color 0.3s, text-decoration 0.3s;
}

nav a:hover {
    background-color: #a3a3a3;
    color: #404040;
    text-decoration: none;
}

a.this {
    background-color: #a3a3a3;
    color: #404040;
    text-decoration: none;
}

.separator {
    width: 100%;
    height: 4px;
    margin: 7px 0;
    background-image: url(separator.png);
}

main {
    margin: 0 auto;
    padding-top: 12px;
    width: 680px;
}

section {
    color: #d4d4d4;
    padding-top: 8px;
    padding-bottom: 8px;
}

section h1,
section h2 {
    font-size: 15px;
}

section p,
section a,
section ul li {
    font-weight: normal;
    font-size: 13px;
}

section a {
    color: #a3a3a3;
    display: inline-block;
}

section ul {
    list-style: none;
    padding: 0;
}

section ul.skills {
    list-style: square;
    padding-left: 20px;
}

section ul.skills li {
    margin-bottom: 4px;
}

p.underconstruction {
    font-size: 15px;
    text-align: center;
    padding: 100px;
}

pre.ascii {
    font-size: 13px;
    color: #a3a3a3;
    white-space: pre;
    margin: 0;
    text-align: center;
}

.footer {
    text-align: center;
    padding-top: 12px;
}

.icon-container {
    display: inline-block;
    width: 20px; /* Ajuste o tamanho conforme necessário */
    height: 20px; /* Ajuste o tamanho conforme necessário */
    vertical-align: middle;
}

.icon-container img {
    width: 100%;
    height: auto;
}

.mobile {
    display: none;
}

.article-link a {
    color: #d4d4d4;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
}

.article-highlight {
    color: #d4d4d4;
    font-size: 12px;
    font-weight: bold;

}

.articles {
    padding-top: 18px;
    padding-bottom: 18px;
    text-align: center;
}

.article-link a:hover {
    color: #a3a3a3;
    font-weight: bold;
}

@media screen and (max-width: 730px) {
    main {
        width: 380px;
    }

    .mobile {
        display: block;
    }

    .desktop {
        display: none;
    }

}

@media screen and (max-width: 400px) {
    main {
        width: 100%;
    }

    .graphic {
        display: none;
    }

    .logo {
        max-width: 100%;
        margin: 0 auto;
        display: table;
    }
}
