@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(90deg, rgba(2, 0, 10, 0.529) 0%, rgba(2, 40, 83, 0.719) 100%);
}

.body {
    background-color: #1f1f1f;
}

nav a {
    font-size: .8em;
    color: #e7eef8;
    font-weight: 500;
    margin-bottom: 5px;
}

nav a:hover {
    color: #b7cff1;
}

.nav-icon {
    width: 15px;
    vertical-align: text-bottom;
}

#titulo,
#spanConsulta {
    text-shadow: 1px 1px 2px rgba(234, 255, 255, 0.263);
}

#spanConsulta {
    font-size: 1em;
}

#form_container {
    /* background-color: rgba(85, 85, 205, 0.77); */
    background-color: #164f9b42;
}

.hide {
    display: none;
}

#data_container {
    opacity: 90%;
    box-shadow: inset 2px 2px 4px rgba(76, 74, 74, 0.482);
}

.erro {
    color: red;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 25px;
    line-height: 20px;
}

footer #logo {
    height: 50px;
    filter: drop-shadow(1px 1px 2px rgba(245, 202, 11, 0.404));
    opacity: 80%;
}

footer #created {
    flex: 100%;
}

footer p {
    margin-left: 16px;
    text-align: center;
    line-height: 25px;
    font-size: .9rem;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.474);
}

footer #links {
    text-align: center;
    margin-top: 30px;
}

footer #links img {
    padding: 3px;
    margin-left: 5px;
    border-top: 1px solid rgba(255, 255, 0, 0.274);
    border-right: 1px solid rgba(255, 255, 0, 0.274);
    border-radius: 5px;
    opacity: 70%;
}

footer #links img:hover {
    opacity: 100%;
}



@media screen and (max-width:800px) {
    footer {
        margin-top: 10px;
    }
}