/* Responsive */
@media only screen and (max-width: 600px) {
    /* Container size */
    .box_container {
        width: 500px;
    }

    /* Header */
    /* Menu display */
    header > nav:nth-of-type(2) > div.main_container > div.box_container > div:first-of-type > div:nth-of-type(2) > ul {
        display: none;
    }
    /* Burger display */
    header > nav:nth-of-type(2) > div.main_container > div.box_container > div:first-of-type > img {
        display: block;
    }

    /* Main */
    /* Display of content */
    main > div.main_container > div.box_container {
        flex-direction: column;
        align-items: center;
    }
    /* Left part */
    /* Left part width */
    main > div.main_container > div.box_container > div:first-of-type {
        width: 500px;
    }
    /* Boxes */
    /* Img */
    div.box > div:first-of-type > a > img {
        width: 198px;
        height: 138px;
    }
    /* Title */
    div.box > div:nth-of-type(2) > div:first-of-type > h3 {
        font-size: 16px;
    }
    /* Links */
    div.box > div:nth-of-type(2) > div:nth-of-type(2) > a {
        font-size: 5px;
    }
    /* Paragraph */
    div.box > div:nth-of-type(2) > div:nth-of-type(3) > p {
        font-size: 12px;
    }
    /* Right part */
    /* Right part width */
    main > div.main_container > div.box_container > div:nth-of-type(2) {
        width: 500px;
    }
    /* Display of table */
    table {
        display: flex;
        justify-content: center;
    }
    /* Table cells */
    th, td {
        font-size: 14px;
    }

    /* Footer */
    /* Display of content */
    footer > div.main_container > div.box_container {
        display: inline;
        justify-content: flex-start;
    }
    /* Copyright */
    footer > div.main_container > div.box_container > div:first-of-type > span {
        display: none;
    }
}