@font-face {
    font-family: 'DIN Condensed';
    src: url('/fonts/DINCondensed-Regular.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('fonts/Lato-Regular.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('fonts/Lato-Medium.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
}

:root {
    font-family: 'Lato', sans-serif;
    color: white;
    -webkit-user-select: none;
    user-select: none;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    text-size-adjust: none;
    overscroll-behavior: none;
    -webkit-tap-highlight-color: transparent;
    scrollbar-width: none;
    background-color: #1C1C1E;
    font-size: 0
}

*,
:after,
:before {
    font: inherit;
    box-sizing: border-box;
    border: 0;
    outline: 0;
    margin: 0;
    padding: 0;
}

::selection {
    color: white;
    background-color: #1C1C1E;
}

a {
    color: inherit;
    -webkit-touch-callout: none;
    -webkit-user-drag: none;
    text-decoration: none;
}

img {
    -webkit-user-drag: none;
    width: 100%;
    height: auto;
    display: block;
}

svg {
    width: 100%;
    height: auto;
    display: block;
}

input {
    color: #fff;
    width: 100%;
    box-shadow: none;
    font-family: 'Lato', sans-serif;
    background: none;
    display: block;
}

input::placeholder {
    color: #777;
}

.page {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100svh;
    padding: 40px;
}

@media (max-width: 767px) {
    .page {
        padding: 32px 16px;
    }
}

.content {
    width: 100%;
    max-width: 490px;
    margin: auto;
}

.title {
    font-family: 'DIN Condensed';
    font-size: 42px;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .title {
        font-size: 36px;
    }
}

.text {
    color: rgb(255 255 255 / 70%);
    font-size: 16px;
    line-height: 140%;
    margin-top: 16px;
}

.links {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
    gap: 16px;
}

@media (max-width: 767px) {
    .links {
        gap: 8px;
        margin-top: 20px;
    }
}

.links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #7C7979;
    border-radius: 12px;
    width: calc(50% - 8px);
    padding: 0 20px;
    height: 56px;
}

@media (max-width: 767px) {
    .links a {
        width: calc(50% - 4px);
        height: 52px;
    }
}

.links img {
    width: 100px;
    flex: none;
}

.button {
    margin-top: 56px;
}

.button a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    color: white;
    background-color: #FF612F;
    border-radius: 24px;
    width: 100%;
    height: 56px;
    padding: 0 20px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

@media (max-width: 767px) {
    .button {
        margin-top: 32px;
    }
}