body {
    margin: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-image: url(../img/background.gif);
    background-size: cover;
    min-height: 100vh;
    font-family: monospace;
}

.container {
    margin-top: auto;
    margin-bottom: 0;
    background: linear-gradient(to bottom, #a6a6a6de, #999595d8);
    display: flex;
    flex-direction: column;
    border: 1px solid #384546;
    padding: 5px 25px 25px 25px;
    box-shadow: -5px 5px 5px rgb(32, 31, 31);
}

.container h1 {
    margin-top: 7px;
    display: flex;
    padding: 8px;
    text-decoration: underline;
}

.container img {
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    margin-bottom: 15px;
    height: 90px;
    width: 90px;
}

.container label {
    font-size: 17px;
    margin-left: auto;
    margin-right: auto;
}

p {
    margin: 2px;
}



#resultado {
    margin-top: auto;
    display: none;
    text-align: start;
    flex-direction: column;
    padding: 15px;
    background: linear-gradient(to bottom, #a6a6a6de, #999595d8);
    border: 1px solid #031e20;
    box-shadow: -5px 5px 5px rgb(1, 1, 1);
    color: rgb(8, 8, 8);

}

#cep {
    border: none;
    box-shadow: -1px 1px 3px gray;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 5px;
    margin-left: auto;
    margin-right: auto;
}

#cep:active {
    background: rgb(218, 218, 218);
}

/*Botoes*/
#btn-pesquisa {
    background: rgb(22, 22, 22);
    color: white;
    margin-top: 2%;
    margin-bottom: -5px;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

#btn-pesquisa:hover {
    background: #040404;
    color: rgb(171, 170, 170);

}

.new {
    border: 5px 5px rgb(154, 154, 154);
    background: black;
    color: white;
    margin-top: 10px;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.new2 {
    background: rgb(22, 22, 22);
    color: white;
    margin-top: 2%;
    margin-bottom: -5px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    
}

.new2:hover {
    color: rgb(196, 196, 196);
}

.new:hover {
    color: rgb(196, 196, 196);
}

/*Creditos*/
.rodape{
    float: inline-end;
    margin-top: auto;
    display: block;
    padding-top: 10px;
    flex-direction: column;
    align-items: center;
}

.rodape .creditos{
    font-size: 12px; 
    color: rgb(0, 0, 0);
    background: rgb(137, 136, 136, 0.4);
   
}

.rodape .creditos:hover{
    filter: invert(75%);
    background: none;
}

.rodape .contato{
    margin-left: 24px;
    margin-right: -3px;
}

.rodape .contato a{
    margin-right: 29px;
}

.rodape .contato img{
    width: 40px;
    height: 40px;
}

.rodape .contato img:hover{
    filter: invert(75%);
}