

.container {
    padding: 50px;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 5px;
    align-items: center;

}

body {
    font-family: 'Arial', sans-serif;
    background-color: #e9e5e5;
    color: #222;
    margin: 0;    
    line-height: 1.6;
    text-align: left;
}

h1 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 20px;
}



p { 

    margin-bottom: 16px;
}

b {
    color: #103a7a;
}




.img-logo {
    width: 200px;
}

.img-box{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.botao-criar-link,.botao-pesquisar-link{
    padding: 15px;
    border: none;
    border-radius: 8px;
    width: 100%;
    margin-bottom: 5px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    transition: transform 0.1s ease;
} 

.botao-criar-link{

    background-color: #103a7a;
    color: whitesmoke;

}

.botao-pesquisar-link{
 
    background-color: #d4d6db;
    color: rgb(38, 37, 37);


}

.botao-criar-link:active, .botao-pesquisar-link:active {
  transform: scale(0.95);
}

.img-unDraw{
    max-width: 150px;
    max-height: 150px;
    margin-top: 5px;
    margin-bottom: 50px;
}



footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 15px;
    gap: 15px;
    font-size: small;
}

.escuro{
    background-color: #22263a;

}

footer p{   
    color: whitesmoke;
}

footer button {
    padding: 10px;
    background-color: #ffffff23;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    width: auto;
    font-size: medium;
    align-self: flex-start; 
    transition: box-shadow 0.2s ease, transform 0.1s ease;
}

footer button:active {
    transform: scale(0.97);
    opacity: 0.9;  
    -webkit-tap-highlight-color: transparent;  
    background-color: #ffffff31;
}

footer img {
    width: 150px;

    align-self: flex-end; 
}
