*{
    font-family: "Poppins-Regular";
}

body{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #F4F2F3;
    /** background-attachment: fixed; -> FIXAR IMAGEM DE FUNDO**/
}

:root{
    --Cor-principal: var(#0D1721);
    --Cor-texto: var(#F4F2F3);
}


.container-cabecalho{
    min-width: 100vw;
    padding: 15px 0 5px 0;
    display: flex;
    justify-content: space-evenly;
    place-items: flex-start;
    background-color: #0D1721;
}

.logo-cabecalho{
    width: 70px;
}

.nome-cabecalho{
    color: #F4F2F3;
}

.logo-span{
    margin: 0 0 0 100px;
}

.link-perfil{
    display: block;
    width: min-content;
}

span{
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: space-around;
    place-items: center;
}

h1{
    text-align: center;
    width: 100%;
    color: #0D1721;
    font-family: "Poppins-Bold";
}

label{
    font-weight: bold;
    color: #0D1721;
    cursor: pointer;
}

.ocultar-login{
    display: none;
}

.ocultar-deslogar{
    display: none;
}

.cabecalho-imagem{
    width: 50px;
    filter: invert(1);
    cursor: pointer;
}

.container-principal{
    display: flex;
    justify-content: left;
    min-width: 100vw;
}

.imagem_perfil{
    object-fit: cover;
}

.container-postagem{
    min-width: 55vw;
    max-height: 100vh;
    color: #0D1721;
    overflow-y: scroll;
    margin-bottom: 20px;
}

.container-sugestoes{
    min-width: 25vw;
    display: flex;
    flex-direction: column;
    place-items: center;
}

.perfil-sugestoes{
    display: flex;
    flex-direction: column;
    place-items: center;
}

.perfil-sugestoes .perfil-imagem-sugestoes{
    width: 125px;
    height: 125px;
    object-fit: cover;
    margin: 0 0 5px 0;
    border-radius: 5px;
}

.perfil-sugestoes a{
    color: #0D1721;
    font-size: 1.2em;
}

h3{
    margin-bottom: 0;
}

p{
    margin-top: 10px;
    font-size: 1.2em;
}