/* Reset some default styles for consistency */
body, h1, h2, h3, p {
    margin: 0;
    padding: 0;
}

/* Style the header */
header {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* Style the profile section */
.profile {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
}

.profile-image {
    flex: 1;
    text-align: center;
}

.profile-image img {
    max-width: 100%;
    border-radius: 50%;
}

/* Style the thumbnail carousel */
.thumbnail-carousel {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row; /* Display thumbnails horizontally */
}

.thumbnail-container {
    margin: 5px;
}

.thumbnail {
    max-width: 100px;
    height: auto;
    cursor: pointer;
}

/* Style the profile details */
.profile-details {
    flex: 1;
}

/* Style the bio section */
.bio {
    
    margin-top: 20px;
    text-align: center;
    max-width: 400px;
}

/* Style the footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
}
