@import url("https://rsms.me/inter/inter.css");

:root {
    font-family: Inter, sans-serif;
    font-feature-settings: 'liga' 1, 'calt' 1; /* fix for Chrome */
}

@supports (font-variation-settings: normal) {
    :root {
        font-family: InterVariable, sans-serif;
    }
}

body {
    -webkit-font-smoothing: antialiased;
    font-family: InterVariable, 'Helvetica', 'Arial', sans-serif;
}

.error-page__container {
    width: 100%;
    height: 100vh;
    background-color: #FAFAFA;
    padding-top: 50vh;
}

.error-page__logo-wrapper {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100vw;
    display: flex;
    justify-content: center;
    padding-top: 30px;
}

.error-page__logo-wrapper > img {
    height: 28px;
    width: auto;
    opacity: 0.8;
}

.error-page__content {
    width: 600px;
    height: 400px;
    margin: -200px auto 0px auto;
    position: relative;
}
.error__code {
    font-family: InterDisplay, sans-serif;
    font-size: 300px;
    line-height: 200px;
    font-weight: 600;
    position: absolute;
    width: 100%;
    top: 0px;
    text-align: center;
    color: #DDDDDD;
    z-index: 0;
}

.error__emoticon{
    font-family: Helvetica, Arial, sans-serif;
    font-size: 150px;
    line-height: 150px;
    font-weight: 700;
    position: absolute;
    width: 100%;
    top: 0px;
    text-align: center;
    color: #DDDDDD;
    z-index: 0;
}

.error__main {
    width: 600px;
    height: 400px;
    padding: 20px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    text-align: center;
}
.error__title {
    width: 100%;
    margin-top: 100px;
    margin-bottom: 30px;
    font-family: InterDisplay, sans-serif;
    color: #333333;
    font-size: 36px;
    font-weight: 600;
}
.error__text {
    font-family: InterVariable, sans-serif;
    font-size: 14px;
    line-height: 21px;
    color: #555555;
}
p.error__text {
    margin-bottom: 10px;
}
.error__text--small {
    font-family: InterVariable, sans-serif;
    font-size: 12px;
    line-height: 18px;
    color: #555555;
}
.error__subtitle {
    font-family: InterDisplay, sans-serif;
    color: #333333;
    font-weight: 600;
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
}
a.error__link, a.error__link:link, a.error__link:visited {
    font-weight: 500;
    color: #222222;
    text-decoration: underline;
    text-decoration-style: dashed;
    text-decoration-color: #777777;
    -webkit-transition: ease-in-out .2s;
    transition: ease-in-out .2s;
}
a.error__link:hover, a.error__link:active {
    color: #000000;
    text-decoration-style: solid;
    text-decoration-color: #555555;
}
.error__browser, .error__browser:link, .error__browser:visited {
    padding: 0px 10px;
    width: 120px;
    display: inline-block;
    color: #777777 !important;
    font-weight: 500;
    font-size: 14px;
}
.error__browser:hover, .error__browser:active {
    color: #333333 !important;
}
.error__browser > img {
    width: 40px;
    height: auto;
    opacity: 0.9;
}
.error__browser:hover > img {
    opacity: 1;
}
