*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.hero{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgb(0, 0, 0), 
    rgba(0, 0, 0));
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

h1{
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.timebox{
    display: flex;
    gap: 100px;
}

.time{
    text-align: center;
}

.time h2{
    font-size: 5rem;
    font-weight: 100;
}

@media (max-width: 600px) {
    .hero{
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
    background-image: linear-gradient(rgb(0, 0, 0), 
    rgba(0, 0, 0));
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}
    h1{
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.timebox{
    display: flex;
    gap: 50px;
    margin-right: 50px;
    margin-left: 50px;
}

.time{
    text-align: center;
}

.time h2{
    font-size: 3rem;
    font-weight: 100;
}

}










