@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400&display=swap');

body{
    font-family: 'Roboto', sans-serif;
    background: #eee;
    /* display: flex; */
    margin: 0;
    padding: 0;
    height:100%;
}
.container{
    min-height:100%;
    position:relative;
}

body *{
    box-sizing: border-box;
}

.img-arquivos{
    margin-top: 25px;
    width: 200px;
}

.top-arquivos{
    width: 85%;
    /* background: rgb(53, 53, 53); */
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0px 15px 0px;
}
.top-usuario{
    display: flex;
    flex-direction: column;
}

.top-usuario p{
    margin: 0;
}
.txt-usuario{
    font-weight: 800;
}


.botao-baixarTodos {
    background-color: green;
    color: white;
    padding: 5px 10px;
    border-radius: 8px;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.botao-sair{
    background-color: green;
    color: white;
    width: 75px;
    padding: 5px 0px;
    /* margin: 50px 0px 0px 0px; */
    border-radius: 8px;
    display: flex;
    justify-content: center;
    text-decoration: none;
}

.right-arquivos{
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-bottom:40px;
}

.lista-arquivos{
    width: 85%;
}

.nome-arquivo{
    width: 100%;
    background-color: white;
    border-radius: 12px;
    margin: 15px 0px 0px 0px;
}

.txt-linha-arquivos {
    margin-bottom: 20px;
    display: flex;
}

.txt-arquivos{
    font-weight: 800;
}

.nome-arquivo>a{
    padding: 7px;
    display: block; 
    text-decoration: none;
}

.nome-arquivo>a:link {
    color: black;
 }
 
 /* link que foi visitado */
 .nome-arquivo>a:visited {
     color: rgba(0, 0, 0, 0.65);
 }
 
 /* mouse over */
 .nome-arquivo>a:hover {
    color: #01913a;
    background-color: #d3d3d3;
    border-radius: 12px;
 }
 
 /* link selecionado */
 .nome-arquivo>a:active {
     color: #396ee2;
 }

 .botao-sair:hover{
    transform: scale(1.1);
}
.botao-baixarTodos:hover{
   transform: scale(1.1);
}
footer{
    position: absolute;
    bottom: 0;
    font-size: 12px;
    width: 100%;
    height:40px;
    /* background-color: rgb(53,53,53); */
    /* color: white; */
    display: flex;
    justify-content: center;
    text-align: center;
}