.badges-section{
    text-align: center;
}

.badges-title-container{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    white-space: pre-line;
}

.badge-post{
    margin-top: 100px;
}

.badges-title{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.badge-header{
    margin: 0;
}
.badge-subheader{
    margin: 0;
}
.top-class-main {
    font-size: 32px;
}
.top-class-sub {
    font-size: 25px;
}
.top-class-red {
    font-size: 35px;
    color: red;
}
.badge-image{
    width: 1000px;
}
.badge-description{
    white-space: pre-line;
    font-size: 25px;
    text-align: center;
}

@media only screen and (max-width: 500px) {
    .badges-title-container {
        flex-wrap: wrap;
        margin-bottom: 30px;
    }
    .top-class-main {
        font-size: 20px;
    }
    .top-class-red {
        font-size: 22px;
        color: red;
    }
    .top-class-sub {
        font-size: 20px;
    }
    .badge-image {
        width: 100%;
    }
    .badge-description {
        font-size: 20px;
        padding: 0 20px;
    }
}