
@import url('https://fonts.googleapis.com/css2?family=Aldrich&family=Orbitron:wght@500;700;900&family=Poiret+One&display=swap');


body {
    font-family: 'Poiret One', cursive;
    direction: ltr;
    text-align: left;
    margin: 0;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

.comming {
    background: url('../img/img.jpg') no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
}

.commimg-wrapper {
    background: rgb(71,75,255);
    background: linear-gradient(90deg, rgba(71,75,255,.9) 0%, rgba(101,40,224,0.6) 100%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box {
    max-width: 800px;
    color: #fff;
    text-align: center;
}

.logo {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    max-width: 140px;
    margin: 0 auto 40px;
}

.logo img {
    max-width: 100%;
}

.comming h5 {
    font-size: 45px;
    margin: 0;
}

.comming h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 70px;
    margin: 0;
    text-transform: uppercase;
}

.counter {
    padding: 60px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.counter-block {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.counter h2 {
    font-size: 70px;
    letter-spacing: 10px;
    margin: 0;
    text-align: center;
    font-family: 'Aldrich', sans-serif;
    max-width: 100px;
}

.counter h6 {
    font-size: 23px;
    margin: 0;
    text-transform: uppercase;
}


.social {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social a {
    color: #fff;
    font-size: 21px;
    margin: 0 20px;
    text-decoration: none;
    border: 1px solid #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all .2s ease-in-out;
}

.social a:hover {
    background: #fff;
    color: #474bff;
}


@media screen and (max-width:575px) {
    .logo {
        padding: 10px;
    }
    
    .comming h1 {
        font-size: 37px;
        text-align: center;
    }
    
    .box {
        width: 100%;
        padding: 20px;
    }
    
    .counter h2 {
        font-size: 40px;
        letter-spacing: 5px;
    }
    
    .counter h6 {
        font-size: 14px;
    }
    
    .social a {
        width: 35px;
        height: 35px;
        font-size: 17px;
    }
}