* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    color: aquamarine;
    /* font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; */
}


.count {
    /* background: #c45252; */
    width: 100%;
    min-height: 100vh;
    background-image: url(images/masjid-maba-9T_MVYo0TqM-unsplash.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    font-size: 2rem;
     display: flex;
     justify-content: space-between;
     flex-direction: column;
     padding: 2rem;
}

.timebox {
    /* background-color: rgb(131, 127, 255); */
    height: auto;
    display: flex;
    padding-top: 3rem;
    justify-content: center;
        gap: 5rem;
flex-wrap: wrap;
}

.time {
    /* background-color: blanchedalmond; */

}

h1 {
    /* background-color: blueviolet; */
    height: 20rem;
    display: flex;
    justify-content: center;
    align-items: end;
}

h2 {
    /* background-color: rgb(255, 251, 127); */
/* padding-bottom: 2rem;
padding-top: 2rem; */
}

p {
    /* background-color: rgb(43, 214, 226); */
    text-align: center;
}
/* -------- Responsive -------- */

/* Tablet (up to 992px) */
@media (max-width: 992px) {
    .count {
        font-size: 3rem;
        padding: 1.5rem;
        justify-content: center; 
    }

    .timebox {
        gap: 3rem;
    }

    h1 {
        height: auto;
        font-size: 2rem;
        align-items: center;
        padding: 1rem 0;
    }
}

/* Mobile (up to 600px) */
@media (max-width: 600px) {
    .count {
        font-size: 3rem;
        padding: 1rem;
justify-content: center;    
}

    .timebox {
        flex-direction: column; 
        gap: 1.5rem;
        padding-top: 2rem;
    }

    h1 {
        height: auto;
        font-size: 2rem;
        text-align: center;
        align-items: center;
        padding: 0.5rem 0;
    }

    h2 {
        font-size: 1.2rem;
        text-align: center;
    }

    p {
        font-size: 2rem;
        text-align: center;
    }
}
