* {
    margin: 0;
    padding: 0;

}

header {
    color: white;
    background-color: black;
    text-align: center;
    padding: 26px 0;
    border-bottom: #209915;
    font-size: large;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-style: italic;
    font-size: 30px;
}

#container {
    height: 180vh;
    display: flex;
    padding: 50px;
    background: #555;
    align-items: center;
    flex-direction: column;
    background-image: url(./assets/floresta.jpg);
    background-size: cover;
    /* background-repeat: no-repeat; */
}

#container input {
    margin-bottom: 7px;
    margin-right: 50%;
}

.lista-animais li {
    list-style-type: none;

}

.lista-animais {
    display: flex;
    color: black;
    font-size: large;
    font-size: 25px;
    font-family: helvetica;
    flex-direction: column;

}

.pesquisar {
    display: flex;
    flex-direction: column;
    align-self: center;
}

.lista-animais a {
    color: white;
    text-decoration: none;
}

.lista-animais article {
    /* margin-bottom: 70px;
    padding-right: 50px;    */
    width: 45rem;
    height: 25rem;
    margin-top: 6rem;
}

.estilizarAnimais {
    color: black;
    padding: 10px;
    background: rgb(105, 195, 105);
    border-radius: 80px;
    text-align: center;
}

.button {
    padding: 12px 10px;
    width: 100px;
    color: white;
    background-color: #209915;
    border: 1px solid #555;
    border-radius: 5px;
    user-select: none;
    cursor: pointer;
    margin-bottom: 2vh;
    text-align: center;
    margin-right: 50%;
    align-self: center;
    margin-left: 130px;
    font-size: 18px;
}

input {
    border: 3px solid #000;
    height: 20px;
    width: 150px;
    font-size: large;
    font-size: 14px;
    padding: 10px 45px;
}

.button:hover {
    background-color: #19ee05;
    transition: 0.3s;
    transform: scale(1.25);
}

.button:active {
    background-color: rgb(81, 194, 16);
    color: white;
}

footer {
    color: white;
    background-color: rgb(100, 86, 86);
    text-align: center;
    border-bottom: #209915;
    font-size: large;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-style: italic;
    font-size: 25px;
    padding: 26px 0;
}

/* celulares */
@media screen and (min-device-width : 310px) and (max-device-width : 510px) {
    .lista-animais article {

        width: 15rem;
        height: 35rem;

    }

    #container {
        height: 270vh;

    }

    header {
        font-size: 20px;
    }
}

@media screen and (min-device-width : 511px) and (max-device-width : 800px) {

    .lista-animais article {
        width: 30rem;
        height: 28rem;

    }

    #container {
        height: 250vh;
    }
}

@media screen and (min-device-width : 801px) {
    #container {
        height: 210vh;
    }
}