@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c&display=swap');

/* 
CORES
#1a1b00 PRETO
#3f4900 VERDE ESCURO FUNDO
#74783f VERDE MUSGO
#a9a77f VERDE CLARO quase bege
*/

/* SCROLLBAR */

* {
    --sb-track-color: #11141101;
    --sb-thumb-color: #383928;
    --sb-size: 10px;
}
  
*::-webkit-scrollbar {
    width: var(--sb-size);
}

.navbar::-webkit-scrollbar {
    height: var(--sb-size);
}
  
*::-webkit-scrollbar-track {
    background: var(--sb-track-color);
    border-radius: 2px;
}

.navbar::-webkit-scrollbar-track {
    background: #74783f;
    border-radius: 2px;
}
  
*::-webkit-scrollbar-thumb {
    background: var(--sb-thumb-color);
    border-radius: 2px;
    border: 1px solid #ffffff0d;
}

.navbar::-webkit-scrollbar-thumb {
    background: #45442c;
    border-radius: 2px;
    border: 1px solid #ffffff0d;
}
  
@supports not selector(::-webkit-scrollbar) {
    * {
      scrollbar-color: var(--sb-thumb-color)
                       var(--sb-track-color);
    }
}

/* SCROLLBAR (FIM) */

* {
    margin: 0;
    padding: 0;
    
    box-sizing: border-box;
}

body {
    background-color: #1a1b00;
    
    background-image: url('https://sadhost.neocities.org/images/tiles/trees.png');
    background-repeat: repeat;
    
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;

    font-family: "MS Gothic";
    color: #a9a77f;
}

header {
    display: flex;
    flex-direction: column;

    flex-grow: 0;
}

header h1 {
    text-align: center;
    font-size: 24px;
    padding: 7px 5px 7px 5px;
}

.navbar {
    background-color: #a9a77f;
    display: flex;
    justify-content: center;
    overflow-x: auto;
}

ul {
    list-style-type: none;
}

.navbar ul {
    display: flex;
    justify-content: center;
    text-align: center;
}

.navbar li {
    display: inline;
    margin: 0 5px;
}

a {
    color: #a9a77f;;
}



.trocar-pagina-btn {
    display: block;
    text-decoration: none;
    color: #3f4900;
    font-size: 20px;
    padding: 10px 5px 10px 5px;
    justify-content: center;
    
}

.trocar-pagina-btn:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.navbar .current-page{
    color: rgb(82, 135, 98);
}

.vertical-section {
    display: flex;
    flex-direction: column;
    border: 3px dotted #1a1b00;
}

.sidebar {
    max-width: 300px;
}

.main-container {
    display: flex;
    padding: 20px;
    max-width: 700px;
    height: 500px;
    justify-content: space-between;
    background-color: #74783f;

    gap: 20px;
}

.text-container {
    padding: 10px 20px 10px 20px;
    overflow-y: auto;
    height: 10px;

    flex-grow: 1;
}

.text-container h2 {
    padding: 10px;
}

.text-container h3 {
    font-style: italic;
    padding: 2px;
    font-size: 0.7em;
}

.text-container p {
    margin: 10px 0 10px 0;
}

.text-container h1 {
    text-decoration: underline;
    text-align: center;
    margin: 2px;
    font-size: 1.5em;
}

.sidebar img {
    display: block;
    margin: 20px auto 20px auto;
    border-radius: 50%;
    border: 1px solid #1a1b00;
}