* {
    margin: 0;
    padding: 0;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman';
}

a {
    text-decoration: none;
    color: rgb(86, 38, 135)
}

header {
    display: flex;
    align-items: center;
    height: 5vh;
    background-color: rgb(248, 244, 242);
}

h1 {
    margin-left: 1.5rem;
}

main {
  
  background-color: white;
    height: 100vh;
}

.busca {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2%;
    background-color: white;


}



ul {
    list-style: none;
}

.container{

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: white;
  border: 2px solid white;
  
}


  .input-pesquisar {
    margin-right: 1%;
    border-radius: 10px;
    height: 3vh;
  }
  
  .input-pesquisar:focus {
    outline: none;
  }
  
  .button-pesquisar {
    display: flex;
    margin-right: 1%;
    border-radius: 5px;
    height: 3vh;
    padding: 0.8em;
    align-items: center;
  }

footer {
  display:flex;
  justify-content: space-around;
  background-color: lightgreen;
  
}

div{
  display: grid;
  text-align: center;
  background-color: orange;
  
}

.item{
  width: 250px;
  height: 80px;
  background-color: orange;
}
 
.esconde-objetos{
  display: none;
}

@media screen and (max-width: 800px){
  .container{
max-width: 800px;
display: flex;
flex-wrap: wrap;
  }
  .item{
order: 1;
height: 100%;
width: 50%;
  }
 
  }
  @media screen and (max-height: 400px) {
    
footer{
  display: none;
}
  }