.campaign {
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 16px;
}

.counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 130px;
    border-radius: 8px;
}

.counter h1 {
    text-decoration: underline;
}

.counter .title {
    color: #9c9c9c;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px #0003;
}

.s-counter {
    color: #25a56a;
    font-size: 1.6rem;
}

.counter .counter-boxes {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.counter .counter-boxes .count-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 4px;
    margin-left: 4px;
}

.counter .counter-boxes .count-box h1 {
    color: #25a56a;
    margin: 0;
    font-size: 1.5rem;
}

.counter .counter-boxes .count-box span {
    color: #9c9c9c;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media screen and (max-width: 768px) {
    .counter .counter-boxes .count-box span {
        font-size: 10px;
        letter-spacing: 0;
    }
}

.counter .counter-boxes .count-box:last-of-type {
    margin-right: 0;
}

.container {
    width: 100%;
}

.campaign-0>span {
    color: #25a56a;
    font-weight: 500;
    font-size: 1.1rem;
}

#countdown-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}