body
{
    background-attachment: fixed;
    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 */
}
 
.plate img 
{ 
    position: fixed;
    top: 49%;   
    left : 46.2%;
    width: 75px; /* adjust to match your aesthetic */
    border-radius: 6px; 
    cursor: pointer; 
    transition: transform 0.2s 
    ease; 
} 
.plate img:hover 
{ 
    transform: scale(1.05); 
} 
/* Clover button in bottom-left */ 
.index-link 
{ 
    position: fixed; 
    bottom: 20px; 
    left: 20px; 
} 
.index-link img 
{ 
    width: 60px; 
    cursor: pointer; 
    transition: transform 0.2s ease; 
} 
.index-link img:hover 
{ 
    transform: scale(1.1); 
}