

@import url("https://fonts.googleapis.com/css2?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&display=swap");
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}


.container {
    display: flex;
    row-gap: 15px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    overflow: hidden;

    }

.container .image {
position: absolute;
height: 100%;
width: 100%;
object-fit: cover;
z-index: -1;

}    

.container h2{
    font-size: 30px;
    color: #0ddaf5;
    font-weight: 400;
    text-align: center; 
}

.container header{
    font-size: 60px;
    color: #fff;
    font-weight: 600px;
    text-align: center;
}
.container p{
    font-size: 16px;
    font-weight: 400;
    color: yellow;


}

.container .time-content{
    display: flex;
    column-gap: 30px;
    align-items: center;
    }
 .time-content .time{
    display: flex;
    flex-direction: column;
    align-items: center;
 }   

 .time .number{
    color: rgb(19, 245, 49);
    font-size: 100px;
    font-weight: 500;
 }
 .time .text {
    text-transform: capitalize;
    font-size: 40px;
    background-color: rgb(247, 8, 8);
    border-radius: 10px;
    color: rgb(253, 253, 250);

 }
 @media (max-width: 360px) {
    .container {
        width: 100%;
        height: 100vh;
        
    }
}