html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.2;
}

.container {
    max-width: 1600px;
    margin: auto;
    padding: 0 15px;
}

.title {
    margin: 35px 0;
    text-align: center;
    font-size: 36px;
    font-weight: 700;
}

.list-title {
    margin: 15px 0;
    font-size: 18px;
    font-weight: 400;
}

.list {
    margin: 10px 0 30px 0;
    padding-left: 50px;
    line-height: 28px;
}

.link-btn {
    -moz-user-select: none;
    -moz-transition: background .2s .1s;
    transition: background .2s .1s;
    border: 0;
    -moz-border-radius: 3px;
    border-radius: 3px;
    cursor: pointer;
    display: block;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    padding: 14px 28px;
    background: #1a73e8;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    outline: none;
    overflow: hidden;
    position: relative;
    text-align: center;
    text-decoration: none;
    z-index: 0;
    box-sizing: border-box;
}

.link-btn:hover {
    background: #2d83f4;
}



.image-container {
    width: 100%;
    overflow: auto;
}

.image {
    display: block;
    height: auto;
}

@media (min-width: 1000px) {
    .image {
        max-width: 100%;
    }
}