html {
    font-size: 100%;
    box-sizing: border-box;
}

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

body {
    position: relative;
    background-color: #f7f8fb;
    color: #535a62;
    font-family: Roboto, sans-serif;
    margin: 0;
    width: 100%;
    height: 100%;

    max-width: 1440px;
    margin: 0 auto;

    text-align: left;
}

.wrapper {
    width: 100%;

    position: relative;

    padding: 0 15px;
}

.header {
    width: 100%;
    padding-top: 40px;
    padding-bottom: 100px;
}

.header > * + * {
    margin-top: 20px;
}

.logo {
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

.main {
    margin: 0 auto;
}

.mobile {
    display: block;
    max-width: 50px;
}

.desktop {
    display: none;
}

.heading {
    font-size: 40px;
    font-weight: 300;

    margin: 0;
    margin-bottom: 20px;

    padding: 0;
}

.copy > h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    padding: 0;
}

.copy {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.62;
}

.copy > a {
    color: inherit;
    text-decoration: underline;
}

.copy > h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    padding: 0;
}

.copy ul,
ol {
    padding: 8px;
    margin: 8px;
}

.copy p {
    margin-top: 20px;
    margin-bottom: 20px;
}

.copy > p a {
    color: inherit;
    text-decoration: underline;
}

.copy > ul a {
    color: inherit;
    text-decoration: underline;
}

.copy > ol a {
    color: inherit;
    text-decoration: underline;
}

.links > a {
    color: #535a62;
    font-family: inherit;
}

.links > a:hover {
    transition: all ease-in-out 0.2s;
    opacity: 0.8;
}

.footer {
    padding: 20px 0;

    margin-top: 150px;

    width: 100%;
    height: 60px;

    z-index: 2;
}

.footer-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.footer-links > a {
    display: block;

    font-size: 14px;
    text-decoration: underline;
}

.footer-links > img {
    display: block;
    height: 15px;
    width: 15px;
}

.footer-links > * + * {
    margin-left: 32px;
}

@media (orientation: landscape) {
    .wrapper {
        padding: 0 40px;
    }

    .main {
        max-width: 880px;
    }

    .mobile {
        display: none;
    }

    .desktop {
        display: block;
    }
}
