.navbar {
    padding: 20px 0px;
    height: 60px;
    display: flex;
    position: relative;
    align-items: center;
    font-size: 20px;
    z-index: 10;
}

.navbar svg {
    height: 55px;
}

.navbar .email {
    margin-top: 10px;
    color: white;
}

.navbar-img-section {
    margin: auto;
    font-size: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    z-index: 10;
    margin-top: 45px;
    width: 80%;
    height: 60px;
}

.navbar .navbar-img-section {
    width: max-content;
    height: 100%;
    margin: 0;
    margin-top: 10px;
    margin-right: 120px;
    margin-left: auto;
    align-items: right !important;
}

.navbar-img-section a {
    text-decoration: none;
    color: white;
}

.navbar .navbar-img-section a {
    padding: 0 20px;
}
.content-header{
    display: grid;
    place-items: center; /* Center both horizontally and vertically */
    height: 100vh;
}
.content-header h1{
    font-size: 200px;
    color: rgb(245, 243, 243);
    text-shadow: 2px 2px 8px #b6b6b6b6;
    z-index: 22;
    width: 80%;
    text-align: center;
}
.bubbles-container{
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    position: absolute;
    overflow: hidden;
}
.bubbles-container .bubble{
    position: absolute;
    background-color: rgba(255, 255, 255, 0.227);
    -webkit-backdrop-filter: blur(15px);
    -webkit-box-shadow: 0 25px 23px rgba(0, 0, 0, 0.15);
    box-shadow: 0 25px 23px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 50%;
    animation: floatAnimation 8s ease-in-out infinite;
}
.bubbles-container .bubble:nth-child(1){
    width: 1000px;
    height: 1000px;
    bottom: -55%;
    left: -24%;
}
.bubbles-container .bubble:nth-child(2){
    width: 900px;
    height: 900px;
    bottom: 50%;
    right: -18%;
    animation-delay: 1s;
    animation-direction: alternate-reverse;
}
.content-header .go-down{
    width: 80px;
    height: 80px;
    line-height: 85px;
    position: absolute;
    bottom: 10%;
    background-color: rgba(255, 255, 255, 0.4);
    -webkit-backdrop-filter: blur(15px);
    -webkit-box-shadow: 0 25px 23px rgba(0, 0, 0, 0.15);
    box-shadow: 0 25px 23px rgba(0, 0, 0, 0.15);
    text-align: center;
    border-radius: 50%;
    color: white;
    font-size: 40px;
    cursor: pointer;
    animation: bounce 4s ease-in-out infinite;
    
}
@keyframes floatAnimation {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(10px) translateY(-5px); /* Customize the movement path */
    }
    50% {
        transform: translateX(20px) translateY(10px); /* Customize the movement path */
    }
    75% {
        transform: translateX(30px) translateY(-5px); /* Customize the movement path */
    }
}
@keyframes bounce {
    0%, 50%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-10px); /* Adjust the bounce height */
    }
}
.about-page-content{
    width: 80%;
    position: relative;
    margin: auto;
}
.about-page-content h1{
    width: 100%;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 80px;
    font-size: 40px;
}
.members-container{
    display: flex;
    flex-wrap: wrap;
}
.member{
    position: relative;
    width: 80vw;
    margin: auto;
    width: 33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 0;
}
.member h2{
    font-size: 35px;
}
.member img{
    display: flex;
    width: 300px;
    height: 300px;
    object-fit:cover;
    border-radius: 10px;
}
.members-wrapper{
    width: 100%;
    position: relative;
    display: flex;
}
.member h2{
    margin-bottom: 10px;
}

.team-manager, .team-lead, .team-consultant, .team-breaker{
    padding: 10px;
    border-radius: 6px;
}
.team-manager{
    background-color: cyan;
}
.team-lead{
    background-color: gold;
}
.team-consultant{
    background-color: lightcoral;
}
.team-breaker{
    background-color: transparent;
}
