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

body{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 5%;
    gap: 5%;
    height: 100vh;
    background-color: gray;
}

.barra{
    display: flex;
    width: 40%;
    height: 4%;
    gap: 5px;
}

.barra input{
    width: 80%;
    height: 100%;
    box-shadow: 0px 5px 5px black;
    text-align: center;
    border-radius: 5px;
}

.barra button{
    width: 19%;
    height: 100%;
    background-color:burlywood;
    box-shadow: 0px 5px 5px black;
    border-radius: 5px;
}

.container{
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    height: 80%;
}

.quadro{
    margin: 2%;
    width: 20%;
    height: 45%;
    background-color: gray;
    display: flex;
    justify-content: center;
    align-items: center;
}

 img {
    width: 100%;
    border-radius: 10px;
}
