* {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

.navbar {
    background-color: white;
}

.navbar-brand {
    text-decoration-color: #55006c;
    color: #55006c;
}

.navbar-brand:hover {
    color: #55006c;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: #55006c; /* Adjust color as needed */
}

.nav-link:hover {
    color: #55006c;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px; /* Adjust height as needed */
    bottom: 7px; /* Adjust position as needed */
    left: 50%;
    background-color: #55006c; /* Adjust color as needed */
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    color: #55006c;
}

.section-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 10vh;
    margin-left: 15vh;
    margin-right: 15vh;
}

.statement, .image-container {
    justify-content: center;
    display: flex;
    flex-direction: column;
    margin: 0 5vw;
}

.statement-header {
    text-align: center;
    margin-bottom: 2vh;
    font-weight: bold;
    font-size: 1.3rem;
}

.instagram-container {
    display: flex;
    padding-left: 5vw;
}

.instagram {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 1vw;
}

.instagram-container {
    position: relative;
    text-decoration: none;
    color: #55006c; /* Adjust color as needed */
}

.instagram-container:hover {
    color: #55006c;
}

.instagram-container::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px; /* Adjust height as needed */
    bottom: 7px; /* Adjust position as needed */
    left: 50%;
    background-color: #55006c; /* Adjust color as needed */
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
    transform: translateX(-50%);
}

.team-section {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.member-box {
    width: 15%;
    text-align: center;
    justify-content: center;
    background-color: #d698e7;
    padding: 1%;
    border-radius: 15px;
}   

.name {
    font-weight: 600;
}
