@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/woff2/OpenSans-Regular.woff2') format('woff2'),
         url('../fonts/woff/OpenSans-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/woff/OPENSANS-SEMIBOLD.TTF') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/woff2/OpenSans-Bold.woff2') format('woff2'),
         url('../fonts/woff/OpenSans-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: url('../img/hint.jpg') repeat center center;
    color: #a0d0eb;
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    min-width: 320px;
}

.container {
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 720px) {
    .container {
        padding: 0 10px;
    }
}

/* ---- Header image ---- */
.header-wrap {
    overflow: hidden;
}

.header-wrap img {
    display: block;
    width: 970px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 740px) {
    .header-wrap img {
        width: calc((100vw - 20px) * 970 / 740);
        min-width: 360px;
    }
}

/* ---- Content ---- */
.content {
    padding: 0;
}

.content-inner {
    padding: 0;
}

/* Text pages: 80px top gap before H1 */
.content--text {
    padding-top: 80px;
}

h1 {
    font-size: 40px;
    line-height: 50px;
    font-weight: 700;
    color: #a0d0eb;
    margin-bottom: 30px;
}

p {
    margin-bottom: 20px;
}

strong, b {
    font-weight: 600;
}

ul {
    list-style-type: disc;
    padding-left: 15px;
    margin-left: 17px;
    margin-bottom: 20px;
}

ul li {
    margin-bottom: 0;
}

ol {
    padding-left: 20px;
    margin-left: 17px;
    margin-bottom: 20px;
}

a {
    color: #ffffff;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

/* ---- Footer ---- */
footer {
    padding: 35px 0 50px;
}

.footer-line {
    border: none;
    border-top: 1px solid #a0d0eb;
    margin-bottom: 50px;
}

.footer-links {
    text-align: center;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-links span {
    color: #a0d0eb;
    margin: 0 8px;
}
