@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@400..800&family=Baloo+Bhaina+2:wght@400..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins',sans-serif;
    color: white;
    font-weight: 400;
}
.main{
    width: 100%;
    height: 100vh;
    background-image: url('back.webp') ;
    background-size:cover;
    
}
.overlay{
    width: 100%;
    height: 100vh;
    background-color: rgb(0, 0,0,0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top:5rem ;
    gap: 10px;
}
.tittle{
    font-size: 2.5rem;
}
.counting{
    margin-top: 10px;
    /* border: 1px solid white; */
    width: 60%;
    height: 200px;
    display: flex;
    justify-content: space-around;
    text-align: center;
}
 .input{
    border: transparent;
} 
input{
    border: none;
    /* background-color: white; */
    color: rgb(0, 0, 0,0.7);
    width: 50%;
    height: 20%;
    border-radius: 5px;
    font-size: 34px;
    font-weight: 300;
    text-align: center;
}
@media (max-width:700px) {
    .tittle{
        font-size: 1.9rem;
    }
    input{
        width:34px;
        font-size: 25px;
    }
    .counting{
        gap: 20px;
    }
}
@media (max-width:450px) {
    .counting{
        width: 70%;
    }
}