.picrews{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.picrews img{
    height: 180px;
    transition: transform 0.5s ease;
    margin: 5px;
    border: 2px solid transparent;
}
.picrews img:hover{
    transform: rotate(5deg);
}