.countdown-container {
    display: flex;
    flex-direction: row;
    gap: 10px;

    .count {
        background-image: url('../images/AllHaSkalle_NoEyes.png');
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .time-wrapper {
        height: 160px;
        width: 120px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        padding: 10px 10px 15px 10px;
    }

    .count {
        font-size: 4rem;
        font-family: "Homenaje";
        color: white;
        width: 100%;
        text-align: center;
        display: flex;
        flex: 1 1 auto;
        /* fills available vertical space */
        align-items: center;
        justify-content: center;
    }

    .time-text {
        font-size: 1.5rem;
        font-family: "Homenaje";
        line-height: 2rem;
    }

    .congrats,
    .ongoing {
        margin-top: 20px;
        padding: 20px;
        border-radius: 8px;
        text-align: center;
        font-size: 2rem;
        line-height: 2.5rem;
        font-family: "Homenaje";
    }
    .congrats {
        color: white;
        text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.6);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        /* -webkit-text-stroke: 0.5px black; */
        background-image: repeating-linear-gradient(225deg,
        #ff0000ab,
        #ffa500ab,
        #ffff00ab,
        #008000ab,
        #0000ffab,
        #4b0082ab,
        #ee82eeab);
    }
    .ongoing {
        border: 2px solid var(--accent-blue);
        background-color: #ffffff66;
    }
}
