.changelog-section {
    margin-top: 48px;
    padding-top: 0;
    min-height: 1000px;
}

.changelog-item {
    width: 100%;
    padding: 8px 4px;
    display: flex;
    align-items: center;
}

.undertime-hr {
    border-color:  #192d35;
    margin-top: 8px;
    margin-bottom: 8px;
}

.underlog-hr {
    margin-top: 8px;
    margin-bottom: 8px;
}

.changelog-date {
    margin-top: 24px;
    color: black;
}

.changelog-type {
    min-width: 132px;
    margin-right: 16px;
    border-radius: 4px;
    padding: 4px;
    font-size: 14px;
    padding-top: 5px;
    font-weight: 800;
}

.type-Improvement {
    background-color: #e1f5fe;
    color: #0288d1;    
}

.type-New {
    background-color: #fff9c4;
    color: rgb(254, 118, 0);
}

.type-Fixes {
    background-color: #ffebee;
    color: #c62828; 
}

.changelog-text a{
    background-color: #f7f9fc;
    border-radius: 4px;
    padding: 2px 4px;
}

@media only screen and (max-width: 770px) {
    .changelog-item {
        flex-direction: column;
        align-items: start;
    }

    .changelog-type {
        margin-bottom: 8px;
    }
}