﻿/*-------------------------------------------------------------------------------
* File:         errors.css
* Purpose:      feuille de styles de la page errors
*
* Copyright Prim'X Technologies SA 2004, 2018.
*-------------------------------------------------------------------------------*/

html, body {
    height: 100%;
    overflow: hidden;
}

.error-page {
    display: flex;
    margin-top: 10%;
    height: 100%;
    justify-content: center;
    text-align: center;
    color: #d32b18;
    font-family: Arial, Helvetica, sans-serif;
}

.error-page h1 {
    margin: 0;
    padding: 0;
    font-size: 25vh;
    position: relative;
}

#BackButton {
    font-size: 4vh;
    font-weight: bold;
    border: 2px solid #d32b18;
    padding: 25px;
}

.error-page p {
    margin-top: 20px;
    margin-bottom: 35px;
}

.underline {
    color: #d32b18;
}

.error-page h1 + p {
    position: relative;
    min-width: 280px;
    font-size: 6vh;
    font-weight: bold;
    line-height: 1vh;
}


@media (max-width: 767px) {
    .error-page h1 {
        font-size: 32vw;
    }

    .error-page h1 + p {
        font-size: 8vw;
        max-width: 70vw;
    }

    .error-page p + a {
        font-size: 4vw;
        max-width: 70vw;
    }
}
