.photo-widget {
 width: 425px;
 height: 425px;
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 grid-template-rows: repeat(3, 1fr);
 gap: 1px;
 top: 0;
 right: 0;
 margin-top: 0px;
 margin-bottom: 4px;
 margin-left: 19px;
 float: right;
}
.photo-widget img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 transition: transform 0.3s ease;
 overflow: hidden;
}
.photo-widget img:hover {
 transform: scale(1.1);
 cursor: pointer;
}