@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Stencil:wght@100..900&family=Dancing+Script:wght@400..700&family=Tektur:wght@400..900&display=swap');

body {
    background: url('https://wallpaper.dog/large/20567146.png');
    background-size: cover;
    background-position: center;
    color: azure;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
    margin: 0;
}

h1 {
    font-family: "Tektur", sans-serif;
    font-size: 5vw;
    margin: 0 auto;
    color: transparent;
    -webkit-text-stroke: 1px rgb(255, 23, 2);
}

h2 {
    font-size: 1.8vw;
    margin: 0 auto;
    color: transparent;
    -webkit-text-stroke: 0.9px rgb(3, 159, 18);
    transition: all 0.5s ease-in-out;
}

.container {
    height: 65vh;
    width: 70vw;
    margin: 0 auto;
    background-color: rgba(47, 36, 36, 0.288);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    backdrop-filter: blur(3px);
    padding: 2vh;
}

#countdown {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
}

#countdown div {
    text-align: center;
    font-family: "Dancing Script", cursive;
    font-size: 1rem;
    color: #ffffffdd;
}

#countdown div span {
    padding: 1.4vh 1.5vw;
    background: rgb(3, 3, 3);
    border-radius: 4px;
    color: rgb(183, 0, 255);
    font-weight: bold;
    display: flex;
    justify-content: center;
    font-family: "Big Shoulders Stencil", sans-serif;
    font-size: 2rem;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Progress bar styling */
#progress-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5vh;
    width: 100%;
}

#progress {
    height: 1.8vh;
    width: 50vw;
    background: #00cc00;
    border-radius: 10px;
    transition: all 0.5s ease;
}

/* Percentage Text */
#percent-text {
    color: #ffffffaa;
    font-size: 1vw;
    font-family: 'Tektur', sans-serif;
}

/* Responsive tweaks */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 10vw;
    }
    h2 {
        font-size: 4.5vw;
    }
    #countdown div span {
        font-size: 1.4rem;
    }
    #progress {
        width: 80vw;
    }
    #percent-text {
        font-size: 3.5vw;
    }
}
