#intro {
    text-align: center;
}

.profile-picture-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 60%;
    border: 5px solid white; /* Beyaz şerit */
    margin-right: 20px; /* Boşluk eklemek için */
}

.profile-picture {
    width: 200px; /* Fotoğrafın genişliği */
    height: 200px; /* Fotoğrafın yüksekliği */
    border-radius: 60%;
    object-fit: cover;
}

.name-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    font-size: 18px; /* İsim yazısı boyutu */
    padding: 8px;
    box-sizing: border-box;
    text-align: center;
}
