:root {
    --dark-blue: #296BAE;
    --blue: #6699CC;
    --light-blue: #D3EBFF;
    --black: #1d1615;
    --white: #F0F8FF;
    --orange: #FF7F50;
    --yellow: #FFA500;
}

.container-error {
    width: 100%;
    max-width: 600px;
    height: auto;

    display: block;

    margin: 200px auto 0 auto;
}

    .title-error {
        width: fit-content;
        max-width: 400px;
        height: fit-content;

        margin: 10px auto;

        text-align: center;

        font-size: 5rem;

        color: var(--yellow);
    }

    .subtitle-error {
        width: fit-content;
        max-width: 600px;
        height: fit-content;

        margin: 10px auto;

        text-align: center;

        color: var(--black);
    }

    .sorry-error {
        width: fit-content;
        max-width: 500px;
        height: fit-content;

        margin: 20px auto;

        text-align: center;

        color: var(--black);
    }

    .container-button {
        width: 100%;
        max-width: 400px;
        height: auto;

        display: flex;
        justify-content: center;

        margin: 40px auto;
    }