@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Livvic:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100vh;
    font-family: Livvic,Arial, sans-serif;
    overflow: hidden;
    background-color: #a2a4a8;
}

.header {
    width: 100%;
    color: white;
    padding-top: 4rem;
}

header h2 {
    text-align: center;
    font-weight: normal;
    font-size: 1.5rem;
}

header h2:nth-child(2) {
    margin: 2rem 0;
}

header h2:nth-child(2) span {
    font-size: 2rem;
    background-color: aliceblue;
    color: #282c34;
    padding: 10px 20px;
    border-radius: 20px;
}
header h2:nth-child(2) span i {padding-right: 2rem;}

.main {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 4rem;
    background-image: url('https://ali-reza.dev/logo.png');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: conver;
    gap: 2rem;
}  

.main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 2;
} .header , .footer, .main > div{
    position: relative;
    z-index: 3;
}

.main > div{
    width: 50%;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 2rem;
    color: white;
}

.countdown > div {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    min-width: 80px;
    text-align: center;
}

.countdown span {
    display: block;
    width: 100%;
    background: white;
    border-radius: 10px 10px 0 0;
    text-align: center;
    color: #282c34;
    font-size: 1rem;
}

.countdown > div > div {
    padding: 1rem;
    text-align: center;
}

.lottieCon {
    width: 50%;
    height: auto;
}
.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.footer img {
    height: 30px;
    margin-right: 10px;
}

.footer a {
    color: white;
    font-weight: bold;
}

@media (max-width: 968px) {
    header h2:nth-child(1)  {
        padding: 0 1rem;
    }
    header h2:nth-child(2)  {
        margin: 2rem 0;
    }
    .main {
        flex-direction: column;
        background-size: cover;
        padding: 2rem 0;
    }
    
    .main > div {
        width: 100%;
    }
    
    .countdown {
        font-size: 1.5rem;
        gap: 10px;
    }
    
    .countdown > div {
        min-width: 60px;
    }
    
    .countdown span {
        font-size: 0.8rem;
    }
    
    .footer {
        font-size: 0.8rem;
        padding: 0 1rem;
        text-align: center;
    }
}