* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Mono', monospace;
    background-color: #1a1a1a;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    width: 100%;
}

.timer-container {
    background-color: #2d2d2d;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #00ff88, #00ffee);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.countdown {
    display: flex;
    justify-content: center;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 300px;
}

.number {
    font-size: 5rem;
    font-weight: bold;
    background: linear-gradient(45deg, #00ff88, #00ffee);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    min-width: 200px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
}

.label {
    font-size: 1.5rem;
    color: #888;
    margin-top: 0.5rem;
    min-width: 120px;
    text-align: center;
}

@media (max-width: 768px) {
    .number {
        font-size: 3.5rem;
    }
    
    .label {
        font-size: 1.2rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
} 

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    text-align: center;
    background: linear-gradient(45deg, #00ff88, #00ffee);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

footer:hover {
    opacity: 1;
} 