/* MARGIN CONTENT — DISPLAY ON WHITE */

.margin-content-wrapper {
    display: flex;
    justify-content: center;
}

.margin-content {
    margin: auto;
    max-width: 60%;

}

.margin-content > h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 30px;
    color: black;
    margin-bottom: 20px;
    padding-bottom: 5px;
    border-bottom: 1px solid black;
}

.margin-content > ul {
    line-height: 1.5;
}


@media screen and (max-width: 900px) {
    .margin-content {
        max-width: none;
        padding: 10px;
        overflow: scroll;
    }

}