﻿@font-face {
    font-family: "FilsonPro";
    src: url("fonts/FilsonProBook.otf") format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "FilsonPro";
    src: url("fonts/FilsonProMedium.otf") format('opentype');
    font-weight: 500;
    font-style: normal;
}

.error_page {
    display: block;
    width: 100%;
    height: 100%;
    min-height: calc(100vh - 200px);
}

.error_container {
    display: block;
    width: 450px;
    padding-top: 56px;
    margin: auto;
}

.errorTitle h1 {
    font-family: "FilsonPro";
    font-size: 20px;
    font-weight: 500;
}

.errorMessage p {
    font-family: "FilsonPro";
    font-size: 13px;
    font-weight: 300;
}

.errorLink p {
    font-family: "FilsonPro";
    font-size: 13px;
    font-weight: 300;
}

.errorLink a {
    font-family: "FilsonPro";
    color: #58AAFF;
    text-decoration: none;
    transition-duration: 0.1s;
}

.errorLink a:hover {
    color: #033596;
    text-decoration: underline;
    transition-duration: 0.1s;
}