#body
{
    background: #f7f7f7;
    padding-bottom: 100px;
    main
    {
        background: #fff;
        padding:40px;

        article
        {
            h1
            {
                letter-spacing: 2px;
                font-size: 1.2em;
                font-weight: 500;
                border-bottom: 2px solid $main-color;
                padding-bottom: 20px;
                margin-bottom: 50px;
                text-shadow: 0 0 1px #000;
            }




            #content
            {
                line-height: 150%;
                letter-spacing: 2px;
                font-size: 14px;
                font-weight: 100;

                h2,h3
                {
                    color:$main-color;
                    font-size:1.2em;
                    font-weight: 500;
                    padding:5px 0 5px 10px;
                    margin-bottom: 20px;
                    border-left: 2px solid $main-color;
                }
                a
                {
                    color:$main-color;
                }

                ul,ol
                {
                    padding-left: 20px;
                    li
                    {
                        line-height: 150%;
                        margin-bottom: 10px;
                    }
                }
                ol
                {
                    list-style-type:decimal ;
                }

                p
                {
                    margin-bottom: 10px;
                }

                #content-list
                {
                    padding-top:100px;
                    display:flex;
                    flex-wrap:wrap;
                    justify-content:space-between;
                    li
                    {
                        width: 25%;
                        picture
                        {
                            display: block;
                            width:130px;
                            img
                            {
                                display: block;
                                width: 100%;
                            }
                        }
                    }
                    @media(max-width:767px)
                    {
                        li
                        {
                            width: 50%;
                            margin-bottom: 10px;
                        }

                    }
                }
            }
        }

        @media(min-width:980px)
        {
            display: flex;
            article
            {
                width: calc(100% - 340px);

            }
            aside
            {
                width: 340px;
                picture
                {
                    display: block;
                    width: 100%;
                    img
                    {
                        display: block;
                        width: 100%;
                        border-radius: 10px;
                    }
                }
            }
        }
    }
}
