*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
.container2{
    width: 40%;
    margin-top:-500px;
}
.container2 h1{
    text-align:  center;
    color: white;
    text-transform: uppercase;
    font-size: 1.8rem;
    position: relative;
    letter-spacing: 3px;
    padding-bottom: 2rem;
}
.container2 h1::after{
    /*content: "Comming Soon";*/
    position: absolute;
    font-size: 0.8rem;
    top: -1.4rem;
    right: 5rem;
    background-color: red;
    color: white;
    padding: 3px;
}
.timers{
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.timers .timer{
    background-color: rgb(31, 22, 61);
    width: 150px;
    height: 150px;
    padding: 0.5rem;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.timers .timer::before{
    content: "";
        background-color: rgb(251, 156, 3);
        inset: 0px ;
        position: absolute;
        border-radius: 50%;
}

.timers .timer div{
    position: relative;
    z-index: 100;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background-color: rgb(10, 6, 21);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.timers .timer div span{
    font-size: 40px;
    color: rgb(251, 156, 3);
    padding: 10px;
}

@keyframes animate {
    0%{
        transform: rotate(0deg);
        inset: 15px;
        
    }
    50%{
        transform: rotate(90deg);
        inset: 5px;
    }
    100%{
        transform: rotate(180deg);
        inset: 0px;
    }
}

@media only screen and (max-width: 640px) {
    .container{
        width: 100%;
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .timers{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}