*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --bs-body-bg: #0F3C73;
    
}

body {
    background-color: var(--bs-body-bg);
}

/* Custom styles for timer */
h1{
    font-size: 4rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.time h2 {
    font-size: 4rem;
    font-weight: 100;
}

/* Responsive font sizes for timer */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    .time h2 {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    .time h2 {
        font-size: 2.5rem;
    }
}
.hero{
    height: 100vh;
    background-color: var(--bs-body-bg);
   
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff; 
}
.timebox{
    display: flex;
    gap: 90px;
}

.time{
    text-align: center;
}

.time h2{
    font-size: 5rem;
    font-weight: 100;
}