@charset "UTF-8";

html, body {
    width: initial;
    height: initial; 

    display: initial;
    flex-flow: initial ;
    justify-content: initial;
    align-items: initial;
}

main#error-page {
    width: calc(100vw - 285px);
    height: calc(100vh - 120px);
    margin-left: 285px;
    margin-top: 120px;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
}

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;
}

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);
}