:root {
    --site-max-width: 980px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

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

.container {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.home-link {
    position: fixed;
    top: 8px;
    left: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    z-index: 20;
}

.home-link img {
    height: 30px;
    width: auto;
}

@media (max-width: 700px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .home-link {
        top: 6px;
        left: 6px;
    }
}