body
{
    background-image: url('/assets/images/tula.png');
    background-size: cover;
    background-attachment: fixed;
}
/* Top row layout */ 
.top-row 
{ 
    display: flex; 
    justify-content: 
    center; gap: 20px; 
    margin-top: 200px; 
} 
.top-row img 
{ 
    width: 400px; /* adjust to match your aesthetic */
    border-radius: 6px; 
    cursor: pointer; 
    transition: transform 0.2s 
    ease; 
} 
.top-row img:hover 
{ 
    transform: scale(1.05); 
} 
/* Clover button in bottom-left */ 
.clover-link 
{ 
    position: fixed; 
    bottom: 20px; 
    left: 20px; 
} 
.clover-link img 
{ 
    width: 60px; 
    cursor: pointer; 
    transition: transform 0.2s ease; 
} 
.clover-link img:hover 
{ 
    transform: scale(1.1); 
}