* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #004289;
    --secondary-color: #E50915;
}

body, html {
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    overflow-x: hidden; 
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.text-red {
    color: var(--secondary-color);
}

.main-cover {
    background: url(banner.png) no-repeat center center;
    background-size: cover;
    min-height: 100vh; 
    width: 100%;
    display: flex;
    align-items: center; 
    justify-content: center; 
    padding: 20px;
}

.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
}

.logo figure {
    width: 400px;
    margin: 0 auto;
}

.banner-main-text h2,
.starting p {
    color: var(--primary-color);
    font-size: 46px;
    font-weight: 700;
    line-height: 1.2;
}

.coming {
    font-size: 72px;
    font-weight: 800;
    text-transform: uppercase;
    -webkit-text-stroke: 1px #333;
    -webkit-text-fill-color: #fff;
    margin: 10px 0;
}

.starting p {
    margin-top: 10px;
}

.btn-style {
    display: inline-block;
    color: white;
    background-color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 20px;
    text-transform: uppercase;
    text-align: center;
    margin-top: 10px;
}

.count-down {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap;
	margin-top: 32%;
}

.number-cover {
    text-align: center;
}

.number {
    font-size: 82px;
    font-weight: 800;
    padding: 10px;
    background-color: var(--primary-color);
    color: #fff;
    height: 120px;
    width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.number-text {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 22px;
    margin-top: 5px;
}

.dots {
    font-size: 42px;
    color: #fff;
    padding-bottom: 20px;
}

@media (max-width: 1024px) {
    .main-cover {
        min-height: 100vh;
        padding: 20px;
    }

    .logo figure {
        width: 300px;
    }

    .banner-main-text h2,
    .starting p {
        font-size: 28px;
    }

    .coming {
        font-size: 40px;
    }

    .btn-style {
        font-size: 16px;
        padding: 8px 12px;
    }

    .number {
        width: 80px;
        height: 80px;
        font-size: 28px;
    }

    .number-text {
        font-size: 14px;
    }

    .dots {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .banner-main-text h2,
    .starting p {
        font-size: 20px;
    }

    .coming {
        font-size: 28px;
    }

    .btn-style {
        font-size: 14px;
        padding: 6px 10px;
    }

    .number {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }

    .number-text {
        font-size: 12px;
    }

    .dots {
        font-size: 20px;
    }
}
