:root {
    --white: #F2E0DF;
    --black: #23211D;
    --blue: #1462A6;
    --dark-blue: #1453A6;
    --red: #BF2431;
    --light-red: #BF2441; 
    --purple: #732D5A ;
}

.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(--purple);
    }

    .subtitle-error {
        width: fit-content;
        max-width: 600px;
        height: fit-content;

        margin: 10px auto;

        text-align: center;

        color: var(--white);
    }

    .sorry-error {
        width: fit-content;
        max-width: 500px;
        height: fit-content;

        margin: 20px auto;

        text-align: center;

        color: var(--white);
    }

    .container-button {
        width: 100%;
        max-width: 400px;
        height: auto;

        display: flex;
        justify-content: center;

        margin: 40px auto;
    }