*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Poppins', sans-serif;
    background-color: #f1f1f1;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: gradient(rgp(0,0,0,0.60),rgp(0,0,0,0.8));
    background-image: url("../images/new1.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}
h1{
    font-size: 20px;
    color: yellow;
    text-shadow: 2px 2px 4px #000000;
}
p{
    font-size: 15px;
    text-shadow: 2px 2px 4px #000000;
    color: black;
}

.time{
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.box{
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 16px;
    text-shadow: 2px 2px 4px #000000;
}
@media (min-width: 764px){
    h1{
        font-size: 50px;
    }
    .box{
        width: 100px;
        font-size: 30px;
    }
    p{
        font-size: 30px;
    }
    
}
@media(min-width: 1064px){
    h1{
        font-size: 80px;
    }
    .box{
        width: 150px;
        font-size: 45px;
    }
    p{
        font-size: 35px;
    }
    
}

@media(min-width: 1500px){
    h1{
        font-size: 100px;
    }
    .box{
        width: 180px;
        font-size: 55px;
    }
    p{
        font-size: 45px;
    }
    
}