/* General styles */
* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

body {
    background-color: #f4f7fc;
}

/* Container */
.container {
    width: 100%;
    height: 100vh;
    background-image: url('skyscraper.png');
    background-position: center;
    background-size: cover;
    box-shadow: inset 0 0 0 2000px rgba(3, 2, 16, 0.813);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Header */
.header {
    background-color: rgba(6, 25, 54, 0.667);
    width: 100%;
    height: 65px;
    padding: 0 8%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 100px;
    cursor: pointer;
}

/* Content */
.content {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    padding: 0 20px;
}

.content h1 {
    font-size: 64px;
    font-weight: 600;
    margin-bottom: 20px;
}

.content h1 span {
    color: rgb(0, 92, 2);
}

/* Timer */
.timer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-unit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 48px;
    font-weight: 600;
    color: #fff;
}

.time-unit p {
    margin: 0;
}

.time-unit span {
    font-size: 48px;
    color: #fff;
}

.labels {
    margin-top: 10px;
    display: flex;
    gap: 40px;
    font-size: 18px;
    color: #fff;
}

.labels span {
    margin-top: 5px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .content h1 {
        font-size: 50px;
    }

    .time-unit p {
        font-size: 40px;
    }

    .time-unit span {
        font-size: 40px;
    }

    .labels span {
        font-size: 16px;
    }
}
