html {
    position: relative;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;

}

div#conteudo {
    margin: 50px auto;
    display: flex;
    justify-content: space-around;
}

div#perguntas {
    position: relative;
    height: 100%;
    width: 70%;
    background-color: #b3b3b31e;
    border-radius: 8px;
    padding-bottom: 80px;
    margin-bottom: 200px;
}

div#perguntas h1 {
    margin-left: 50px;
    margin-top: 30px;
    display: flex;
    justify-content: start;
    padding-bottom: 10px;
    padding-left: 10px;
    align-items: center;
    width: 90%;
    border-bottom: 1px solid #0000002d;
}

div#perguntas h1 img {
    width: 40px;
    background-color: #cb2026af;
    padding: 5px;
    border: 5px solid #fff;
    box-shadow: 0 0 0.1em #00000096;
    border-radius: 8px;
    margin-right: 10px;
}

div#perguntas img#search {
    position: absolute;
    right: 50px;
    background-color: #fff;
    border-radius: 20px;
    width: 25px;

}

div.pergunta {
    width: 90%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid #0000002d;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

div.pergunta h2 {
    font-weight: 500;
    margin-left: 20px;
}

div.pergunta p {
    margin: 5px 20px;
    margin-top: 10px;
    color: #000000ba;
}

button.ver-resposta {
    cursor: pointer;
    margin-top: 30px;
    display: flex;
    justify-self: center;
    height: 50px;
    width: 25%;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 8px;
    background-color: #cb2026;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
}

button.ver-resposta:hover {
    background-color: #cb2026bf;
    transition: 0.3s;
}

div#maiores_perguntas {
    height: 100%;
    width: 20%;
    background-color: #b3b3b31e;
    border-radius: 8px;
}

div#maiores_perguntas h2 {
    margin: auto 20px;
    margin-top: 20px;
    font-size: 20px;
}

div#maiores_perguntas h4 {
    margin: 20px;
    margin-top: 40px;
    margin-bottom: 10px;
}


div.parte_baixo {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

div.tags {
    width: 70%;
    display: flex;
}

div.tags h4 {
    margin-top: 50px;
    margin-left: 0px;
    color: #000000ba;
    font-weight: 600;
}

div.tags ul {
    margin-top: 40px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

div.tags ul li {
    cursor: pointer;
    list-style: none;
    background-color: #b3b3b34b;
    padding: 10px;
    color: #000000ba;
    border-radius: 16px;
}

div.duvida p {
    border-bottom: 1px solid #0000002d;
    padding-bottom: 20px;
    text-align: start;
    margin: 10px 20px;
    color: #00000095;
    font-size: 15px;
}

p#descricao_p {
    text-align: center;
    border-bottom: 1px solid #0000002d;
    padding-bottom: 20px;
    margin: 10px 20px;
    color: #00000095;
    font-size: 15px;
}

div.resposta {
    display: none;
    margin-top: 20px;
    position: relative;
}

.resposta.visible {
    display: block;
    margin-top: 20px;
    position: relative;
}

div.resposta .titulo {
    display: flex;
    justify-content: space-between;
}

div.resposta .titulo img {
    cursor: pointer;
    position: absolute;
    width: 40px;
    padding: 5px;
    border: 5px solid #e04b50ad;
    box-shadow: 0 0 0.4em #00000096;
    border-radius: 8px;
    margin-right: 10px;
    right: 0px;
    background-color: #cb2026;
    border-radius: 20px;
    width: 25px;
    top: 10px;
}

@media (max-width: 1000px) {
    div#conteudo {
        display: block;
    }

    div#perguntas h1 {
        font-size: 24px;
    }

    div#perguntas {
        position: relative;
        height: 100%;
        width: 95%;
        margin: auto;
        padding-top: 20px;
    }

    div#maiores_perguntas {
        padding-top: 20px;
        margin: auto;
        text-align: center;
        margin-top: 50px;
        height: 100%;
        width: 95%;
        display: block;
        margin-bottom: 400px;
    }

    div.duvida {
        display: flex;
    }

    p#descricao_p {
        text-align: center;
    }

    div.tags {
        display: none;
    }

    button.ver-resposta {

        width: 80%;
        margin: 20px auto;
    }

}

@media(max-width:500px) {
    div#perguntas img#search {
        display: none;
    
    }

    div#perguntas h1 {
        margin: auto;
        display: flex;
        justify-content: start;
        padding-bottom: 10px;
        padding-left: 10px;
        align-items: center;
        width: 90%;
        border-bottom: 1px solid #0000002d;
    }

    div#maiores_perguntas h4 {
        margin-top: 10px !important;
    }
}