@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css');
@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@400;800&display=swap');


html {
    font-size: 62.5%;
}

body, main, main section, .timer {
    display: flex;
}

body {
    background-color: #2c2c2c;
    background-size: cover;
    background-position: top top;
    height: 100vh;
    width: 100vw;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-transform: uppercase;
}

main {
    flex-direction: column;
    box-shadow: 4px 8px 13px 9px rgba(0,0,0,0.75);
-webkit-box-shadow: 4px 8px 13px 9px rgba(0,0,0,0.75);
-moz-box-shadow: 4px 8px 13px 9px rgba(0,0,0,0.75);
    width: 100%;
    max-width: 1100px;
}

main section {
    height: auto;
    max-height: 425px;
    width: 100%;
    background-color: #2C2C2C;
    align-items: center;
}

.header {
    border-bottom: #454b55 solid 5px;
}

.header img{
    width: 100% !important;
}

.timer {
    flex-direction: column;
    justify-content: center;
    height: 100%;
    font-family: 'Dosis', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
}

/* Timer Code */
#event-timer {
    color: #fff;
    font-family: 'Dosis', sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin: 10px auto;
    text-align: center;
    text-transform: uppercase;
    display:flex;
}

#event-timer>div {
    border-right: 1px dashed rgba(0, 0, 0, 0.45);
    display: flex;
    justify-content: center;
    flex-direction:column;
    margin-right: 20px;
    padding-right: 20px;
    text-align: center;
}

#event-timer>div:last-child, #lead-clock .time-unit:last-child {
    border-right: 0 none;
    margin-right: 0;
    padding-right: 0;
}

#event-timer span {
    color: #fff;
    display: block;
    font-size: 80px;
    line-height: 80px;
    margin-bottom: 5px;
    padding-top: 10px;
    font-weight: 400;
}

.imgCenter {
    display: block;
    margin: 0 auto;
    width: 80%;
}

@media (max-width: 499px) {
    #event-timer>div {
        margin-right: 5px;
        padding-right: 5px;
    }

    #event-timer span {
        font-size: 30px;
        line-height: 30px;
    }
}

/* End Timer Code */
@media screen and (max-width: 1024px) {
    main {
        max-width: 95%;
    }
}
@media screen and (max-width: 576px) {
    .timer {
        font-size: 2rem;
    }
    #event-timer span {
        font-size: 4rem;
    }
    #event-timer {
        font-size: 1.25rem;
    }
}