@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mr+De+Haviland&display=swap');

:root {
    --main-color: #ff751f;
    --black: #13131a;
    --bg: #13131a;
    --border: rem solid rgba(255, 255, 255, .3);
}

* {
    font-family: 'Audiowide', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: none;
    transition: .2s linear;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar {
    width: .8rem;
}

html::-webkit-scrollbar-track {
    background: transparent;
}

html::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 5rem;
}

body {
    background: var(--bg);
}

section {
    padding: 2rem 3%;
}

.home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}


.home .content {
    text-align: center;
}

.home .content h3 {
    font-size: 8rem;
    text-transform: none;
    color: #b0aeae;

    display: inline-block;
    padding-bottom: 10px;
    background-image: linear-gradient(to right, #ff751f 0%, #ff751f 100%);
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 100% 10px;
}

/* Countdown Timer */
.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 117, 31, 0.15);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    padding: 15px 20px;
    min-width: 100px;
    text-align: center;
    border: 1px solid rgba(255, 117, 31, 0.3);
}

.countdown-item span:first-child {
    display: block;
    font-size: 4rem;
    font-weight: bold;
    color: #ff751f;
    line-height: 1.2;
}

.countdown-item .label {
    font-size: 1.4rem;
    color: #b0aeae;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    display: block;
}

@media (max-width: 768px) {
    
}


@media (max-width:768px) {

    .home {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .home .content h3 {
        font-size: 4rem;
        background-size: 100% 5px;
    }

    .countdown {
        gap: 15px;
    }

    .countdown-item {
        padding: 10px 12px;
        min-width: 70px;
    }

    .countdown-item span:first-child {
        font-size: 2.5rem;
    }

    .countdown-item .label {
        font-size: 1rem;
    }

}

@media (max-width:450px) {

    html {
        font-size: 50%;
    }

}