#countdown-container {
    /* Set the required dimensions for the whole container */
    width: 300px;
    height: 250px; 
    
    /* Set your 300x250 image as the background */
    background-image: url('https://www.southgatv.com/content/uploads/2025/12/w/s/montlick-santa-countdown-300x250-1.jpg'); /* <-- CHANGE THIS to your image file name */
    background-size: cover; 
    background-repeat: no-repeat;
    
    /* Crucial: Allows us to position the clock absolutely inside */
    position: relative; 
    overflow: hidden; 
}

#countdown-clock {
    /* Position the text absolutely within the container */
    position: absolute;
    
    /* Placement: Set it at the very bottom (0px from bottom) */
    bottom: 0; 
    left: 0;
    
    /* Set the height and width to cover the blank 55px area */
    width: 100%; 
    height: 55px;
    
    color: black; 
    font-family: Arial, sans-serif; 
    font-size: 24px; 
    font-weight: bold;
    
    text-align: center;
    line-height: 55px;
}

.countdown-link-wrapper {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 300px;
}