.journal-counter-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

@media (max-width: 800px) {
    .journal-counter-container {
        flex-direction: column;
    }
}

.journal-counter {
    width: 300px;
    overflow: hidden;
    font-size: 16px;
    line-height: 1.5;
    color: #555555;
    margin: 15px;
    position: relative;
    transition: all 350ms ease-in-out;
}

.journal-counter:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 35px #dbdbdb;
}

.journal-counter__header {
    padding: 25px;
    background: rgba(0, 0, 0, 0.8);
    min-height: 200px;
}

.journal-counter__title {
    margin: 0;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
}

.journal-counter__title > span {
    font-size: 3em;
    display: inline;
}

.journal-counter__circle {
    width: 8em;
    height: 8em;
    color: #ffffff;
    border-radius: 50%;
    background-color: #298ecf;
    position: absolute;
    line-height: 8em;
    text-align: center;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.journal-counter__circle-text {
    font-size: 2.5em;
    color: #ffffff;
    display: inline-block;
}

.journal-counter__actions {
    border-top: 1px solid #eeeeee;
    display: flex;
    flex-direction: column;
    min-height: 100px;
    padding-top: 90px;
    padding-bottom: 10px;
}

.journal-counter__text {
    font-size: 1.2em;
    text-align: center;
    margin: 0;
    color: #000000;
}

.journal-counter__button {
    display: inline-block;
    margin: 15px auto;
    padding: 8px 20px;
    text-decoration: none;
    color: #298ecf;
    background: #ffffff;
    border-radius: 5px;
    border: 1px solid #298ecf;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-weight: bold;
}

.journal-counter__button:visited {
    color: #298ecf;
}


.journal-counter__button:hover {
    background: #298ecf;
    color: #ffffff;
}
