#countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}

.tile {
    background: #0026ff;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 100px;
}

    .tile .count {
        font-size: 2.5em;
        display: block;
    }

    .tile .label {
        font-size: 1em;
        text-transform: uppercase;
    }