@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    /*A perfect way to make image darkish overlay, without any other tag*/
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('images/AI\ Background.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 20px;
}
.container {
    max-width: 900px;
    width: 100%;
    background: rgba(15, 23, 42, 0.7);
    text-align: center;
    padding: 40px;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.title {
    font-size: 2.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    background-clip: text;
    color: transparent;
}
.end-time {
    font-size: 1.2rem;
    font-weight: 400;
    color: #94a3b8;
    margin-bottom: 50px;
}
.wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.time-value {
    width: 120px;
    height: 120px;
    text-align: center;
    font-size: 3.5rem;
    font-weight: 600;
    background: rgba(30, 41, 59, .5);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .05);
    margin-bottom: 15px;
    color: #f8fafc;
}
.time-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #94a3b8;
    font-weight: 500;
}