.dog-container {
    margin-top: 3rem; /* Increase this value as needed */
    display: flex;
    justify-content: flex-start;
  }

.dog-photo-wrapper {
    width: 200px;
    aspect-ratio: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .dog-photo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #ccc;
  }
  
  .dog-name {
    margin-top: 0.75rem;
    font-size: 1.25rem; /* Slightly bigger */
    font-weight: 600;
    color: #333;
  }
  
