



.portfolio__container {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Horizontally center-align all items */
    justify-content: center;
}


.portfolio__item {
    text-align: center; /* Center-align individual items */
    margin: 10px 0;
}

.portfolio__photo {
    width: 150px;
    height: 160px;
    border-radius: 50%;
    background-size: cover;
    background-position: center top;
    margin: 0 auto 15px; /* Centers the photo and adds spacing below */
}

.portfolio__details {
    text-align: center; /* Center-align the text content */
}

.portfolio__name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.portfolio__description {
    font-size: 1rem;
    color: #666;
}