:root {
      --background: #282C34;
      --blue: #61AFEF;
      --cyan: #56B6C2;
      --green: #98C379;
      --purple: #C678DD;
      --red: #E06C75;
      --white: #DCDFE4;
      --yellow: #E5C07B;

      --container-width: 900px;
    }

body {
    background-color: var(--background);
    color: var(--white);
    font-family: Consolas, monospace;
    font-size: 1.2em;
    justify-content: center;
    text-align: center;
    width: var(--container-width);
    margin: 0 auto;
    min-height: 100vh;
}

header,
footer {
    cursor: default;
    justify-content: center;
    text-align: center;
    padding: 10px 0;
}

a {
    color: var(--blue);
    text-decoration: none;
}

a:hover{
    background: var(--blue);
    color: var(--background);
}

a::selection{
    background: var(--blue);
    color: var(--background);
}

nav {
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;

}

nav a{
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 2px;
    padding-bottom: 2px;
}

p {
    text-align: justify;
}

h2 {
    color: var(--purple);
}

h2::selection {
    background: var(--purple);
    color: var(--background);
}

.title {
    color: var(--white);
    font-size: clamp(0.5em, 1vw + 0.4em, 1.2em);
    margin-bottom: 10px;
}

.left {
    text-align: left;
}

.artigo {
    padding-left: 10px;
}

.autores {
    font-style: italic;
    font-size: 0.9em;
}

.periodico, .evento, .ano {
    font-size: 0.9em;
    font-weight: bold;
}

::selection {
    background: var(--white);
    color: var(--background);
}

nav a.active {
    font-weight: bold;
    background: var(--blue);
    color: var(--background);
}


@media (max-width: 1000px) {
    body {
        width: 90%;
    }
}