/* Media 1280 */
@media screen and (max-width: 1280px) {
    header,
    .intro,
    .content,
    footer {
        max-width: 1100px;
    }
}

/* Media 1100 */
@media screen and (max-width: 1100px) {
    header,
    .intro,
    .content,
    footer {
        max-width: 800px;
    }
    header {
        padding: 0 10px;
    }
    .content {
        padding: 30px 0;
    }
}

/* Media 768 */
@media screen and (max-width: 768px) {
    body {
        padding: 0;
    }
    header,
    footer {
        width: 100%;
        max-width: none;
    }
    header {
        flex-direction: column;
        margin: 0 0 23px 0;
        padding: 14px 14px 24px 14px;
        border-radius: 0;
    }
    header img {
        align-self: center;
    }
    header ul {
        margin: 18.4px 0 0 0;
    }
    header ul li {
        margin: 0 15px;
        padding: 0;
    }
    header ul li a {
        padding: 0;
    }
    .intro {
        width: 90%;
    }
    .intro p {
        width: 80%;
    }
    .content {
        width: 90%;
    }
}   

/* Media 425 */
@media screen and (max-width: 425px) {
    header ul li,
    footer {
        padding: 18px 0;
    }
    footer {
        border-radius: 0;
    }
    footer ul li,
    header ul li {
        margin: 0 8px;
        padding: 0;
        font-size: 9.15385px;
        line-height: 10px;
    }
    footer ul li a {
        padding: 0;
    }
    footer ul li a:last-child {
        content: 'real or fake';
    }
    .intro {
        margin: 0 auto;
        background: url('../img/mob.png') center / cover no-repeat;
    }
    .intro h1 {
        font-size: 18px;
        line-height: 23px;
    }
    .intro p {
        margin: 0 0 21.5px 0;
        width: 95%;
        font-size: 12px;
        line-height: 15px;
    }
    .intro button {
        font-size: 10px;
        line-height: 10px;
    }
    .content {
        padding: 37.8px 0 27px 0;
    }
    .content h2 {
        font-size: 14px;
        line-height: 16px;
    }
    .content p {
        font-size: 12px;
        line-height: 15px;
    }
    .content ul li {
        font-size: 12px;
        line-height: 15px;
    }

    header img {
        height: 15px;
    }
}