body {
    font-family: Arial, sans-serif;
    background-color: white;
    /* Change this line */
}

#background-image {
    position: relative;
    left: 50%;
    width: 60%;
    transform: translateX(-50%);
    height: 80%;
    z-index: -1;
}

.header {
    position: fixed;
    width: 100%;
    height: 100px;
    background: url('logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    transition: opacity 1s;
}

.content,
.content2,
.content3,
.content5,
.content6 {
    margin-top: 10px;
    font-size: 25px;
    text-align: center;
    padding-top: 20px;
}

.content4 {
    margin-top: 50px;
    text-align: center;
    font-style: be vietnam Pro;
}

.profile-container {
    display: flex;
    justify-content: space-between;
    width: 95%;
    /* Adjust as needed */
    margin: 0 auto;
    /* This will center the container */
}

.profile {
    flex: 1;
    margin: 1%;
    /* Adjust as needed */
    text-align: center;
    /* This will center the text within each profile */
}

.profile-pic {
    border-radius: 50%;
    /* This makes the image circular */
    width: 175px;
    /* Adjust as needed */
    height: auto;
    /* This will maintain the aspect ratio of the image */
    display: block;
    /* This allows us to use margin auto for centering */
    margin-left: auto;
    /* This will center the image horizontally */
    margin-right: auto;
    /* This will center the image horizontally */
}

.content,
.content2,
.content3,
.content4,
.content5,
.content6,
.profile-container {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.fade-in {
    opacity: 1;
}

.about-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10%;
    /* Adjust as needed */
}