@charset "UTF-8";

html, body {
    width: 100vw;
    height: 100vh; 

    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
}

main#error-page {
    width: 100%;
    height: 100%;
    margin-top: -50px;
    /*margin-left: 285px;
    margin-top: 120px;*/
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;

    text-align: center;
}

main#error-page > div#texto > h1 {
    margin-top: 200px;
    font-family: "Glass Antiqua", serif;
    font-size: 2em;
    color: var(--cor4);
}

main#error-page > div#texto > p {
    margin-top: 25px;
    text-indent: 25px;
    font-weight: normal;
    text-align: center;
}

main#error-page > div#texto > p > a {
    text-decoration: none;
    font-weight: bold;
    color: var(--cor4);
    cursor: pointer;
    transition: color 0.2s;
}

main#error-page > div#texto > p > a:hover {
    color: var(--cor0);
}