body {
    background-color: var(--preto-meioescuro);
}

.wiki_content {
    display: flex;
}

.wiki_header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wiki_header > img {
    width: 100px;
}
.wiki_header > h1 {
    font-size: 3em;
    color: var(--white);
    font-weight: 500;
}

.wiki_left_box {
    width: 15vw;
    height: 100%;
    background-color: var(--vermelho-vinho);
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.topic_home_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5em 0em;
    border-bottom: 1px var(--white) solid;
    margin: 1.2em;
}

.topic_home_box > i { 
    font-size: 1em; 
    color: var(--white);
    margin-bottom: .3em;
}
.topic_home_box > a {
    font-size: 1.5em;
    color: var(--white);
}
.wiki_topics_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 1em;
    margin-bottom: 6em;
}

.wiki_topics_box > a {
    font-family: 'Poppins', 'Russo One';
    color: var(--white);
    font-size: 1.1em;
}

.suport_topic {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 1.5em;
    padding: 1em;
}

.wiki_right_box {
    width: 85vw;
    padding: 0em 5em;
}

.wiki_topic_box {
    width: 100%;
    margin: 1em 0em;
}

.wiki_topic_box > h1,h2,p {
    color: var(--white);
    font-weight: 400;
    line-height: 25px;
}

.wiki_topic_box > h1 {
    font-size: 2.8em;
    margin-top: 1em;
}

.wiki_topic_box > h2 {
    font-size: 1.5em;
    margin-top: 3em;
    margin-bottom: 1.5em;
    font-family: 'Poppins';
    font-weight: 700;
    border-bottom: .1px solid whitesmoke;
}

.wiki_topic_box > p {
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 1.1em;
}

@media (max-width: 768px) {
    .wiki_header > h1 {
        font-size: 1.8em;
    }
    .wiki_header > img {
        width: 65px;
    }
    .wiki_left_box {
        width: 90%;
    }
    .wiki_right_box {
        width: 100%;
        padding: 0em 5vw;
    }
    .wiki_topic_box > h1 {
        font-size: 2.2em;
        margin-top: 1em;
    }
}

@media (max-width: 900px) {
    .wiki_header > h1 {
        font-size: 2.2em;
    }
    .wiki_header > img {
        width: 80px;
    }
    .wiki_content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .wiki_left_box {
        width: 70%;
    }
    .wiki_right_box {
        width: 90%;
        padding: 0em 5vw;
    }
}
