@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --space-cadet: #151e3fff;
    --pumpkin: #fa7921ff;
    --slate-gray: #6b818cff;
    --slate-gray: rgb(31, 45, 97);
    --lavender-blush: #eee5e9ff;
    --white: #ffffffff;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: poppins, Arial, Helvetica, sans-serif;
}

/*TODO Alterar largura e cor da barra de rolagem*/
body{
    background-color: var(--space-cadet);
    position: relative;
    height: 100vh;
}


main{
    display: flex;
    flex-flow: column nowrap;
    margin: 10px;
    min-height: calc(100vh - 300px);
}
nav{
    background-color: var(--slate-gray);
    display: flex;
    flex-flow: row-reverse wrap;
    justify-content: center;
    align-items: center;
    /*cursor: pointer;*/
    padding: 10px;
    position: relative;
}

nav > a{
    width: 200px;
    order: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    align-self: center;
}

nav > a img{
    width: 100%;
    height: auto;
    margin-right: 10px;
}



h1, h2{
    color: white;
    margin-left: 20px;
    color: #FCFFFC;
    text-align: center;
    margin-top: 20px;
}

h3{
    color: white;
    padding: 20px 0px;
    font-size: 2rem;
}

h4{
    color: rgb(93, 105, 212);
    font-size: 1.5rem;
}

p{
    color: white;
    text-align: justify;
    padding: 10px;

}

.titulo_questao {
    font-size: 1.2rem; /*2rem;*/
    margin: 30px 10px 10px 10px; /*50px 20px;*/
}

ul{
    display: flex;
    width: 100%;
    list-style: none;
    color: white;
    flex-flow: row wrap;
    justify-content: center;
    
}
li {
    padding: 10px;
    margin: 5px; /*20px;*/
    flex-basis: 500px;
    background-color: #fa7921ff;
    font-size: 1.1rem; /*1.4em;*/
    flex-grow: 0;
    flex-shrink: 1;
    border-radius: 10px;
}
a{
    text-decoration: none;
    color: #FCFFFC;
}

a[download] {
    color: lightgreen;
}

footer p{
    text-align: center;
}

footer a {
    text-decoration: underline;
}

.box {
    border: solid 1px #FFF;
    border-radius: 10px;
    padding: 10px;
    color: #FFF;
}

.container-sobre {
    width: 70%;
    min-width: 400px;
    margin: auto;
}

.container-sobre a {
    text-decoration: underline;
    color: rgb(93, 105, 212);
}

.team-member {
    /*clear: both;*/
    margin-top: 30px;
}

.team-member h4 {
    margin-bottom: 10px;
}

.team-member img {
    width: 150px;
    /*float: left;*/
    display: inline-block;
    vertical-align: top;
}

.team-member p {
    width: calc(100% - 160px);
    display: inline-block;
    vertical-align: top;
}

@media (min-width: 768px) {
    .pLicao {
        display: block;
    }
}