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 */
}

.floating-frame 
{ 
    position: fixed; 
    top: 52%;
    left: 71%; 
    width: 240px; 
    height: 300px; 
    border: none;
    transform: translate(-50%, -50%); 
}

.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);
}