*, html{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #242424;
}

main{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
    width: 100%;
    padding: 10px;
    margin: 0 auto;
    gap: 32px;
}

img{
    pointer-events: none;
    user-select: none;
}

.container{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 750px;
}

.container h1{
    font-size: 24px;
    font-weight: 400;
    text-align: center;
}

.domain-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    border: #C0261D solid 1px;
    border-radius: 20px;
    gap: 16px;
}

.domain-wrapper .globe{
    margin-top: -18px;
    padding: 0 5px;
    background: #fff;
}

.domain-name{
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.domain-text{
    font-size: 14px;
    text-align: center;
}

.domain-line{
    height: 2px;
    width: 100%;
    max-width: 150px;
    background: #242424;
    opacity: 20%;
}

#domain-host{
    font-size: 24px;
    font-weight: 700;
    color: #2F208B;
}

.status{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    margin-bottom: -10px;
    padding: 0 4px;
    background: #fff;
    font-size: 18px;
}

.auction-status-span{
    color: #2F208B;
}

.info-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
}

.info-text-one{
    font-size: 12px;
    line-height: 16px;
}

.info-text-two{
    font-size: 12px;
    line-height: 16px;
}

.logos{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 32px;
    align-items: center;
}

.uz-ex{
    width: 100%;
    max-width: 190px;
}

.background-one{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 200px;
}

.background-two{
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 200px;
    rotate: -180deg;
}

.anniversary-img{
    width: 100%;
    height: 100%;
    max-width: 970px;
    max-height: 90px;
    z-index: 1;
}

.mobile-app{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    background: #fff;
    max-width: 970px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1), 0 0 5px 0 rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 20px 0;
    overflow: hidden;
    z-index: 1;
}

.mobile-text{
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    align-items: center;
    z-index: 1;
    width: 100%;
}

.mobile-text span:nth-child(1){
    width: 100%;
    font-weight: bold;
}

.mobile-text span:nth-child(3){
    width: 100%;
}

.mobile-app .cctld-mobile{
    border-radius: 80px;
    width: 300px;
}

.app-links{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.app-links a img{
    margin-top: 5px;
    width: 100%;
    max-width: 150px;
}

.mid-position{
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
}

.end-position{
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
}

.lang{
    position: absolute;
    font-size: 14px;
    top: 5%;
    display: flex;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.1), 0 0 10px 0 rgba(0, 0, 0, 0.1);
    gap: 28px;
    padding: 12px;
    z-index: 2;
}

a{
    text-decoration: none;
    color: #4E4E4E;
}
#domain-host a {
    color: #2F208B;
}

a.active{
    font-weight: 600;
    color: #1D00D2;
}


/*sm */
@media (min-width: 640px) {
    main{
        max-width: 640px;
        padding: 30px;
    }
    .status{
        font-size: 24px;
        margin-bottom: -15px;
    }
    .lang{
        top: 9%;
    }
    #domain-host{
        font-size: 36px;
    }
    .app-links{
        flex-direction: row;
        justify-content: end;
        gap: 12px;
    }
    .mobile-app .cctld-mobile{
        width: 350px;
    }
}

/*md */
@media (min-width: 768px) {
    main{
        max-width: 768px;
    }
    .logos{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .lang{
        top: 11%;
    }
}

/*lg */
@media (min-width: 1024px) {
    main{
        max-width: 1024px;
    }
    .container{
        gap: 36px;
    }
    .container h1{
        font-size: 32px;
    }
    .domain-wrapper{
        gap: 32px;
    }
    .domain-name{
        gap: 12px;
    }
    .domain-text{
        font-size: 18px;
    }
    .domain-line{
        max-width: 200px;
    }
    #domain-host{
        font-size: 52px;
    }
    .status{
        font-size: 32px;
        padding: 0 8px;
        margin-bottom: -18px;
    }
    .lang{
        top: 15%;
    }
    .info-wrapper{
        gap: 24px;
    }
    .info-text-one{
        line-height: 24px;
    }
    .info-text-two{
        font-size: 16px;
        line-height: 24px;
    }
    .lang{
        right: 20%;
    }
    .mobile-app{
        flex-direction: row;
        justify-content: end;
        align-items: center;
        padding: 20px 70px 20px 0;
    }
    .mobile-text{
        flex-direction: row;
        justify-content: end;
        text-align: left;
    }
    .mobile-text span:nth-child(1){
        width: 20%;
    }
    .mobile-text div:nth-child(2){
        height: 60px;
        background: #C0261D;
        margin-right: 20px;
        width: 2px;
    }
    .mobile-text span:nth-child(3){
        width: 30%;
    }
    .mobile-app .cctld-mobile{
        width: 40%;
        position: absolute;
        object-fit: cover;
        border-radius: 0;
        top: 0;
        left: -10px;
    }
}

/*xl */
@media (min-width: 1280px) {
    main{
        max-width: 1280px;
    }
    .background-one{
        max-width: 470px;
    }
    .background-two{
        max-width: 470px;
    }
}

/*2xl */
@media (min-width: 1536px) {
    main{
        max-width: 1536px;
    }
}