body
{
    background-size: auto 100%;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: rgb(0, 0, 0);
    background-color: black;
    margin: 0;
    min-height: 95vh;
    display: flex;
    flex-direction: column;
}



.floating-image {
    position: fixed; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    width: 1080px; 
    height: auto; 
    z-index: -1; /* ensures the image stays behind other content */
}

.corner-button {
    position: fixed;
    bottom: 20px;   /* distance from bottom */
    left: 20px;     /* distance from left */
    z-index: 9999;  /* stays on top */
}

.corner-button img {
    width: 80px;        /* adjust size */
    height: auto;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.corner-button img:hover {
    transform: scale(1.1);
}

.floating-frame 
{ 
    position:fixed;
    top: 55%; 
    left: 42%; 
    width: 200px; 
    height: 270px; 
    border: none;
    transform: translate(-50%, -50%); 
    z-index: 3;
    overflow: auto;
}

.floating-frame2
{ 
    position: fixed; 
    top: 58%; 
    left: 53.5%; 
    width: 195px; 
    height: 150px; 
    border: none;
    transform: translate(-50%, -50%); 
    overflow: auto;
}

/* Translucent scrollbars for floating-frame and floating-frame2 */
.floating-frame::-webkit-scrollbar,
.floating-frame2::-webkit-scrollbar {
    width: 8px;
    background: rgba(255,255,255,0.02); /* more translucent */
}

.floating-frame::-webkit-scrollbar-track    {
    color: rgba(255, 255, 255, 0.11); /* more translucent */
}
.floating-frame2::-webkit-scrollbar-track {
    width: 8px;
    background: rgba(255, 255, 255, 0.11); /* more translucent */
}

.floating-frame::-webkit-scrollbar-thumb,
.floating-frame2::-webkit-scrollbar-thumb {
    background: rgba(200,200,200,0.35);
    border-radius: 6px;
    border: 2px solid rgba(0,0,0,0.05);
}

.floating-frame::-webkit-scrollbar-thumb:hover,
.floating-frame2::-webkit-scrollbar-thumb:hover {
    background: rgba(200, 200, 200, 0.291);
}

/* Firefox */
.floating-frame,
.floating-frame2 {
    scrollbar-width: thin;
    scrollbar-color: rgba(200,200,200,0.35) rgba(255,255,255,0.02);
}

