*{  
    
    margin: 0px;
    padding: 0px;
}
html{
    background-color: rgb(23, 23, 23);
}
::-webkit-scrollbar{
    width: 5px;
    height: 0px;
}
::-webkit-scrollbar-thumb{
    width: 10px;
    background-color: aqua;
}
img{
    display: flex;
    width: 100vw;
}
    header{
        width: 100%;
        position: fixed;
    height: 4rem;
    background-color: rgba(0, 0, 0, 0.445);
    backdrop-filter: blur(2px);
    
    }
.logo{
    width: 300px;
    padding: 8px;
    align-items: center;
    
}
header {
    width: 100%;
    position: fixed;
    height: 4rem;
    background-color: rgba(0, 0, 0, 0.637);
    backdrop-filter: blur(2px);
    display: flex; /* Use flexbox */
    align-items: center; /* Center vertically */
    /* Initially center the items */
    transition: justify-content 1s ease; /* Add transition for justify-content */
    justify-content: center; 
}

header h1 {
    padding: .5rem;
    text-align: center;
    font-family: "Jacquard 12 Charted", system-ui;
    font-weight: 400;
    font-size: 3rem;
    font-style: normal;
    text-decoration: none;
    color: rgb(255, 255, 255);
    margin: 0; /* Remove default margin */
    transition: 1s;
}


#rightContent {
    padding: .5rem; /* Adjust horizontal alignment */
    color: white;
    display: none; /* Initially hidden */
    font-family: "Poppins", sans-serif;
    animation: colorChange 2s infinite; 
    font-size: small;
    transition: color 1s ease;
}
#bold{
    font-size: large;
    font-weight: bold;
    color: gold;

}

@keyframes colorChange {
    0% { color: white; } /* Start with white color */
    50% { color: rgb(0, 65, 65); } /* Transition to aqua color */
    100% { color: white; } /* Transition back to white color */
}
#bannerflow-iframe{
    padding-top: 3rem;
}
@media (max-width: 800px) { /* Adjust max-width to target mobile devices */
    #headerh1 {
        display: none; /* Hide the h1 element on mobile devices */
    }
    header {
        background-color: rgba(0, 0, 0, 0.837);
    }
    #bannerflow-iframe{
    padding-top: 0rem;
}
}