/*

    ##################################################################################################

                                        Formatação desktop

    ##################################################################################################

*/

                                        /* Barra de navegação */

.meu_nome{
    font-size: 2.5rem;
    text-align: center;
    margin-top: 2.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.botao_bandeira{

    background-color: transparent;
    border: none;
    border-radius: 30%;

}

.botao_bandeira:hover{
    cursor: pointer;
}

.botao_bandeira:focus{
    outline: none;
    border: none;
}

.bandeira{
    width: 2.5rem;
    height: 2.5rem;
}

.nav_bar{
    background-color: #6d706f;
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin-top: 2.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    position: sticky;
    max-height: 5rem;
    width: 100%;
}

.nav_items{
    list-style: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 80%;
    color:white;
    font-size: 1.25rem;
}

.items{
    color: white;
    text-decoration: none;
}

.items:hover{
    border-bottom: 3px solid white;
    cursor: pointer;
    transition: 0.1s ease;
    color: white;
}

                                        /* Apresentação */

.apresentacao{

    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin-top: 1.875rem;
    font-family: 'PT Sans', sans-serif;
    margin-bottom: 3.125rem;

}

.foto{
    
    height: 400px;
    width: 300px;

}

.texto{

    width: 50%;

}

.titulo{

    font-size: 1.875rem;
    text-align: center;
    font-weight: bold;

}

.historia{

    font-family: 'PT Sans', sans-serif;
    font-size: 1.25rem;
    text-align: center;
    text-align: justify;

}

                                            /*Footer*/

.footer{
    background-color: #6d706f;
    height: 6.25rem;
    position: absolute;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    color:white;
    font-weight: bold;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.rotulo_footer{

    list-style: none;
    text-align: center;

}