* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),  /* dark overlay for text readability */
    url("images/8cc8832b0b976eb2192e079a0f1e3ace.jpg") center/cover no-repeat fixed;    /* <-- change to your image path or URL */

    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #f7e48b;
    text-shadow: 0 0 10px #f7e48b, 0 0 20px #f7e48b;
}

#timer {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.time-box {
    background: rgba(255,255,255,0.15);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    min-width: 90px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    transition: transform 0.3s ease;
}

.time-box:hover {
    transform: translateY(-5px);
}

.number {
    font-size: 2.2rem;
    font-weight: bold;
    color: #f7e48b;
    display: block;
}

.label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.85;
}

footer {
    position: absolute;
    bottom: 20px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
}