.text {
    text-align: justify;
}

.text a {
    color: #363636;
    text-decoration: underline;
}

.text a:hover {
    color: #f60;
}

.text ul,
.text ol {
    margin: 0px 0px 0px 10px;
}

.text ol {
    padding-left: 10px;
}

.text ul li {
    list-style: square;
    list-style-position: inside;
}

.text ol li {
    list-style: decimal;
}

.text img {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 740px) {
    .text img {
        display: block;
        max-width: 100%;
        height: auto;
    }

    .text .videoWrapper {
        position: relative;
        padding-bottom: 56.25%;
        /* 16:9 */
        padding-top: 25px;
        height: 0;
    }

    .text .videoWrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

@media (min-width: 741px) {
    .text .videoWrapper {
        margin: 10px 0px;
        display: grid;
        justify-content: center;
        align-content: center;
    }
}