body {
    color: white;
    overflow-x: hidden
}
.profile-container {
    width: 100%;
    max-width: 2000px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.profile-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.photo-carousel {
    position: relative;
    width: 50%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.memberphoto {
    height: 100%;
    width: auto;
    object-fit: contain;
    transition: opacity 0.5s ease;
}
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 1;
}
.carousel-button.left {
    left: 10px;
}
.carousel-button.right {
    right: 10px;
}
.profile-card {
    width: 50%;
    padding: 20px;
    text-align: left;
    margin-left: 5%;
}
.name {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}
.role {
    font-size: 20px;
    margin-bottom: 5px;
}
.fact {
    font-size: 16px;
    color: #c6c6c6;
}
.fact a {
    color:rgb(255, 202, 202);
    text-decoration: none;
}
