html, body {
    font: 16px/1.4 Inter, "Helvetica Neue", Helvetica, sans-serif;
    background-color: #fefefe;
}

a {
    color: rgb(4, 76, 159);
}

a:hover {
    text-decoration: none;
}

#main {
    background-color: #fff;
    margin: 24px auto;
    padding: 16px;
    width: calc(700px - 32px);
}

#go-home {
    margin-bottom: 48px;
    font-size: 20px;
    padding: 16px 0;
}

#go-home a {
    padding: 16px 0;
}

h1 {
    background: no-repeat left url('/images/logo_small.png');
    padding-left: 64px;
    font-size: 32px;
    font-weight: bold;
    line-height: 48px;
    margin: 0 0 30px;
    height: 48px;
}

h3 {
    font-size: 20px;
    font-weight: bold;
}

h4 {
    margin: 12px 0 0;
}

p {
    padding: 0;
    margin: 8px 0;
}

.clear {
    clear: both;
}

.devices-table {
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    height: 264px;
}

.devices-table .clients {
    margin-top: 26px;
}

.devices-table .client {
    text-decoration: none;
    color: #333;
    border: 1px solid #fff;
    display: inline-block;
    padding: 32px;
    margin: 16px;
    width: 76px;
    text-align: center;
}

.devices-table .client:hover {
    border-radius: 5px;
    border: 1px solid #ddd;
}

.devices-table .client:first-child {
    margin-left: 0;
}

.devices-table .client:last-child {
    margin-right: 0;
}

.shape {
    display: block;
    width: 320px;
    margin: 12px 0 36px;
}

@media screen and (max-width: 760px) {
    #main {
        width: calc(480px - 32px);
    }
    
    h1 {
        background-position: top center;
        text-align: center;
        padding-top: 64px;
        padding-left: 0;
        line-height: 36px;
        height: auto;
    }
}