/* Reset default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.card {
        
    width: 600px;  /* Wider card width for better text fit */
    height: 300px; /* Taller card height */
    display: flex;
    justify-content: center;
    align-items: center;
    
    
}

.text-container {
    position: relative;
    display: inline-block;
    
}

/* Black text (background text) */
.text-blacks {
    font-size: 8rem; /* Large font size */
    font-family: 'Shadows Into Light Two', cursive; /* Brush-like font */
    font-weight: 900;
    
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: all 0.4s ease-in-out; 
    line-height: 1; 
}


.text-whites {
    font-size: 8rem; 
    font-family: 'Shadows Into Light Two', cursive;
    font-weight: 900;
    
    position: relative;
    z-index: 2;
    transform: translate(-10px, -10px); 
    transition: all 0.4s ease-in-out;
    line-height: 1; 
}


.text-container:hover .text-blacks {
    transform: translate(10px, 10px); 
}

.text-container:hover .text-whites {
    transform: translate(0px, 0px); 
}


