
body{
    position:relative;
    min-height: 100vh;
    margin:0;
    background-color: black;
    
}
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('bgone2.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.8; /* Adjust this value (0 to 1) */
    z-index: -1;
    padding-bottom: 20px;
}
.nabbox {
    position: relative;
    height: 50px;
    width: 100vw;
    background-color: transparent; /* Make main bg transparent */
    display: flex;
    overflow: hidden; /* Ensures pseudo-element stays inside */
    justify-content: space-between;
    margin-bottom: 5px;
}

.nabbox::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgb(255, 255, 255);
    opacity: 0.8; /* Adjust this value */
    z-index: 0;
    pointer-events: none; /* Allows clicks to pass through */
}

.nabbox > * {
    position: relative;
    z-index: 1;
}

#menu{
    height:50px;
    width: 50px;
    font-size:2.2rem;
    padding-top: 5px;
}
#b-text{
    font-size: xx-large;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin-top: 5px;
    font-weight: bold;
    color:rgb(46, 12, 109);
    letter-spacing:5px;
    
}
#profile{
    font-size: xx-large;
    padding-top: 5px;

}
#bannerbox{
    background-color: rgba(0, 0, 0, 0.37);
    height:45vw;
    width: 100vw;
    border-radius: 7px;
    /* background-image: url(banner1.jpg);
    background-size: cover; */
}

/* ...existing code... */
#bannerbox {
    position: relative;
    overflow: hidden;
    /* ...existing code... */
    box-shadow: 0 4px 24px 0 rgba(33, 9, 56, 0.5);

}
.imgs {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s;
}
.imgs.active {
    opacity: 1;
    z-index: 1;
}


 @media (min-width: 700px) {
    #bannerbox {
        height: 35vw;
    }
} 
 @media (min-width: 1000px) {
    #bannerbox {
        height: 25vw;
    }
} 
 @media (min-width: 1500px) {
    #bannerbox {
        height: 20vw;
    }
} 
.row1{
    width:100vw;
    height:15vh;
    border-radius: 7px;
    background-color: rgba(0, 0, 0, 0);
    margin-top: 90px;
    display:flex;
    justify-content: space-evenly;
}

.row2{
    width:100vw;
    height:15vh;
    border-radius: 7px;
    background-color: rgba(0, 0, 0, 0);
    margin-top: 30px;
    display:flex;
    justify-content: space-evenly;
}
.row3{
    width:100vw;
    height:15vh;
    border-radius: 7px;
    background-color: rgba(0, 0, 0, 0);
    margin-top: 30px;
    display:flex;
    justify-content: space-evenly;
}
.box{
    height:15vh;
    width:25vw;
    /* use the decorative background image for the box */
    background-image: url('boxxbg1.jpeg');
    background-size: cover; /* fill the box */
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent; /* allow the bg image to show */
    border-radius: 10px;
    display: flex;                
    align-items: center;        
    justify-content: center; 
    overflow: hidden; 
    
    /* background-size/position handled above */
    box-shadow: 0 4px 24px 0 rgba(33, 9, 56, 0.5);
}




.--buttons--{
    /* make the inner image slightly inset so the box background is visible */
    height: 80%;
    width: 80%;
    border-radius: 8px;
    object-fit: contain;
    display: block;
    background: transparent;
}
.box-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none; /* Remove underline */
    background: transparent; /* anchor should not override .box background */
}
.box-link:visited, .box-link:active {
    color: inherit;
}
#empty{
    width: 100%;
    height:30px;
}

