.error-page{
    padding: 150px 0;
    text-align: center;
    max-width: 70%;
    margin: 0 auto
}
.bold-grad{
    font-weight: 700;
    font-size: 70px;
    margin-bottom: 10px;
    display: block;
}

.error-page h1{
    margin-bottom: 20px;
}
.error-page p{
    font-size: 20px;
    margin-bottom: 30px;
}
.gohomepage{
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
    width: 220px;
    height: 55px;
    line-height: 55px;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    /* padding: 15px 60px; */
    display: inline-block;
}
.gohomepage:hover::before{
        content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    -webkit-transform: translateZ(-1px);
    -moz-transform: translateZ(-1px);
    transform: translateZ(-1px);
    pointer-events: none;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
    transition: all .3s ease, -webkit-filter .3s ease;
    background: -webkit-gradient(linear, left top, right top, from(#6366f1), color-stop(47.12%, #a855f7), to(#ec4899));
    background: -moz-linear-gradient(left,#6366f1 0,#a855f7 47.12%,#ec4899 100%);
    background: linear-gradient(90deg, #6366f1, #a855f7 47.12%, #ec4899);
    background-clip: content-box;
    padding: 1px;
    -webkit-filter: blur(15px);
    filter: blur(15px);
    z-index: -1;
    opacity: 1;
}
