/* -- This is the CSS for the countdown clock -- */
/* ---------- by Angel Luna Torres ---------- */

* {
    box-sizing: border-box;
}

body{
    background-image: url("../img/bg.jpg");
    background-size: cover;
    background-position: center center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

h1{
    font-family: "Kablammo", system-ui;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-weight: normal;
    font-size: 4rem;
    margin-top: 15rem;
    color: rgb(0, 0, 0)
}

.big-text{
    font-weight: strong;
    font-size: 6rem;
    line-height: 1;
    margin: 1rem 2rem;
    -webkit-text-stroke: 2px rgb(255, 0, 0);
    filter: drop-shadow(10px 10px 10px #000000);
}

.countdown-el span{
    font-size: 3rem;
}

.countdown-el{
    text-align: center;
}