html, body {
    font-family: 'Rubik';
    font-weight: bold;
    font-style: normal;
    margin: 0;
    padding: 0;
    color: white;
    background: url("./img/logo.png") 50% 0 no-repeat;
}

.header {
    grid-area: header;
    font-size: 32px;
    text-align: center;
    font-weight: 500;
    margin-bottom: 920px;
}
.left {
    grid-area: left;
    background: url("./img/tree.png") 0 0 no-repeat;
    margin-right: 25px;
}
.right {
    grid-area: right;
    background: url("./img/blob.png") 0 0 no-repeat;
    margin-left: 25px;
}
.left,
.right {
    padding-top: 115px;
    font-size: 26px;
    color: #15357b;
    font-weight: 600;
    margin-bottom: 170px;
}
.left .text,
.right .text {
    font-size: 16px;
    font-weight: 400;
    display: block;
    padding-top: 50px;
    /*padding-right: 50px;*/
    line-height: 25px;
}
.footer {
    grid-area: footer;
    font-size: 14px;
    color: #15357b;
    text-align: center;
    font-weight: 400;
}
.container {
    display: grid;
    grid-template-areas:
            "header header header header"
            "left left right right"
            "footer footer footer footer";
    max-width: 945px;
    margin: 0 auto;
    padding: 0 20px;
    padding-top: 500px;
    padding-bottom: 35px;
}

@media (max-width: 767.98px) {
    html, body {
        background: url("./img/logo-mob.png") 50% 0 no-repeat;
    }
    .container {
        display: grid;
        grid-template-areas:
                "header header header header"
                "left left left left"
                "right right right right"
                "footer footer footer footer";
        max-width: 360px;
        margin: 0 auto;
        padding: 0 20px;
        padding-top: 300px;
        padding-bottom: 35px;
    }
    .header {
        grid-area: header;
        font-size: 23px;
        margin-bottom: 550px;
    }
    .left, .right {
        padding-top: 100px;
        font-size: 23px;
        margin-bottom: 70px;
    }
    .left {
        background-size: 65px;
        margin-right: 0;
    }
    .right {
        background-size: 55px;
        margin-left: 0;
    }
    .left .text, .right .text {
        font-size: 15px;
        font-weight: 400;
        display: block;
        padding-top: 25px;
        padding-right: 0;
        line-height: 22px;
    }
    .footer {
        grid-area: footer;
        font-size: 13px;
        margin-top: 20px;
    }
}

