.photos img {
    object-fit: cover;
    aspect-ratio: 3 / 3; 
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1rem;
    cursor: pointer;
    justify-self: center;
}

.photos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 1rem;
    /* margin-top: 2rem; */
    margin: 2rem 1rem 0rem 1rem;
}

@media (max-width: 600px) {
    .photos {
      grid-template-columns: repeat(2, 1fr);
    }
  }


.hr {
    height: 0.5rem;
    background-size: 13rem;
    margin-left: 1rem;
    margin-right: 1rem;
    margin-top: 2rem;
    /* width: 90%; */
    background-color: var(--color4);
}