.centered_list {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    margin: auto;
    max-width: 1000px;
    list-style: none;
}

.centered_list h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.centered_list p, .centered_list aside {
    margin: 0.8rem 0;
}

.centered_list > li {
    display: flex;
    flex-direction: row;
    padding-bottom: 20px;

    gap: 20px;
}

.seperator {
    border-bottom: 1px solid white;
    padding-top: 15px;
}

li > .desc {
    flex: 1.2;
}

.desc img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 700px;
}

li > .example {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    max-width: 300px;
}

@media (max-width: 1000px) {
    li > .example {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .centered_list > li {
        flex-direction: column;
        align-items: center;
    }
}

/* Banner */
/* #region */
.banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 0;
}

.banner h1 {
    margin-bottom: 0;
}

.banner h4 {
    margin-top: 10px;
}

@media (max-width: 700px) {
    .banner {
        align-items: flex-start;
    }
}
/* #endregion */