@font-face {
    font-display: swap;
    font-family: Proxima Nova W01;
    font-style: normal;
    font-weight: 400;
    src: local("Proxima Nova W01 Regular"), local("Proxima-Nova-W01-Regular"), url(./Proxima-Nova-W01-Regular.woff2) format("woff2")
}

@font-face {
    font-display: swap;
    font-family: Proxima Nova W01;
    font-style: normal;
    font-weight: 500;
    src: local("Proxima Nova W01 Semibold"), local("Proxima-Nova-W01-Semibold"), url(./Proxima-Nova-W01-Semibold.woff2) format("woff2")
}

@font-face {
    font-display: swap;
    font-family: Proxima Nova W01;
    font-style: normal;
    font-weight: 600;
    src: local("Proxima Nova W01 Black"), local("Proxima-Nova-W01-Black"),
        url(./Proxima-Nova-W01-Black.woff2) format("woff2")
}

* {
    border: 0;
    box-sizing: border-box;
    color: inherit;
    font: inherit;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: #ffffff;
    color: #57585a;
    font-family: Proxima Nova W01, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    overflow: auto;
    position: relative;
}

.container {
    max-width: 1210px;
    margin: auto;
    padding: 0 1.25rem;
    width: 100%;
}

.navigation-top {
    background: #f6f6f6;
    padding: 10px;
    color: #57585a;
    font-size: .875rem;
}

.navigation-top .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.navigation-top span {
    display: inline-flex;
    vertical-align: middle;
    font-weight: 500;
}

.navigation-top span svg {
    height: 1.5rem;
    width: 1.5rem;
    margin-right: .375rem;
}

.header {
    text-align: center;
    background: white;
    padding: .9375rem 0;
    border-bottom: .0625rem solid #ececec;
    box-shadow: 0 30px 30px 0 rgba(23, 23, 25, .06);
}

.header .logo {
    margin-bottom: -2.125rem;
    margin-left: -1.125rem;
    margin-top: -0.7rem;
}

main {
    flex: 1;
    padding: 4.75rem 0;
}

main .container {
    min-height: 100%;
}

main h1 {
    font-weight: 600;
    font-size: 2.25rem;
    color: #171719;
    padding-bottom: 1.875rem;
}

main .container.container--centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 840px;
    text-align: center;
}

.page__code {
    position: relative;
}

.page__code h1 {
    padding: 0;
    color: #0cb3ca;
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.2;
    left: 50%;
    position: absolute;
    transform: translateX(-50%) translateY(20%);
}

.page__headline {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.5;
    color: #171719;
    margin-top: 2.5rem;
}

.page__headline span {
    display: inline-block;
    position: relative;
}

.page__headline span svg {
    left: 0;
    margin-top: -.5rem;
    position: absolute;
    top: 100%;
    width: 100%;
}

.page__text {
    font-size: 1.125rem;
    margin-top: 1.125rem;
    text-align: center;
}

footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
    border-top: 1px solid #ececec;
}