@import url('https://fonts.googleapis.com/css?family=Nunito+Sans');
:root {
    --blue: #0e0620;
    --white: #fff;
    --green: #2ccf6d;
}

.error-page_container {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family:"Nunito Sans";
    color: var(--blue);
    font-size: 1em;
    background: white;
    height: 100%;
    overflow: hidden;

    .row {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    button {
        font-family:"Nunito Sans";
    }
    ul {
        list-style-type: none;
        padding-inline-start: 35px;
    }
    svg {
        width: 100%;
        visibility: hidden;
    }
    h1 {
        font-size: 7.5em;
        margin: 15px 0px;
        font-weight:bold;
    }
    h2 {
        font-weight:bold;
        color: black!important;
        font-size: xx-large;
        margin: 2rem 0px;
    }
}

.error-page_btn {
    z-index: 1;
    overflow: hidden;
    background: transparent;
    position: relative;
    padding: 8px 50px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1em;
    letter-spacing: 2px;
    transition: 0.2s ease;
    font-weight: bold;
    margin: 2rem 0px 5px 0px;

    &.green {
        border: 4px solid var(--green);
        color: var(--blue);
        &:before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 0%;
            height: 100%;
            background: var(--green);
            z-index: -1;
            transition: 0.2s ease;
        }
        &:hover {
            color: var(--white);
            background: var(--green);
            transition: 0.2s ease;
            &:before {
                width: 100%;
            }
        }
    }
}
@media screen and (max-width:768px) {
    .error-page_container {
        .row {
            flex-direction: column;
        }

        h1 {
            font-size: 2.5rem;
        }

        h2 {
            font-size: large;
        }
    }
}