.container{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
}
.container div img{
    transition: 0.5s;
    overflow: hidden;

}
.container div img:hover{
    transform: scale(1.02);
    z-index: 2;
}
nav{
    height: 80px;
   
    display: flex;
justify-content: center;
    align-items: center;

    align-items: center;
    gap: 10px;
   
}
nav input{
font-size: 25px;
    width: 50%;
  padding: 7px;
    height: 20px;
 
}
nav div{
    width: 20%;
 padding: 7px;
    height: 90px;
margin-right: 70px;
}
nav div img{
    height: 100%;
    width: 100%;
}

nav button{
    margin-right: 200px;
}

nav button img{
    width: 50px;
    height: 27px;
}

