html,
body {
    font-family: 'Roboto', sans-serif;
    padding: 0;
    margin: 0;
}

.content {
    height: 100vh;
    display: block;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #F8F7FC;
    overflow: hidden;
}

.top-banner {
    width: 100vw;
    height: auto;
}

.top-banner img {
    width: 100%;
    height: 100%;
}

.error-container {
    padding: 1rem 1.5rem;
    margin-top: -10vw;

}

.error-logo {
    background-image: url('assets/404_error.svg');
    background-repeat: no-repeat;
    max-width: 100%;
    background-position: center;
    background-size: contain;
    width: 100%;
    height: 250px;
    align-self: center;

}

.error-title {
    color: #444444;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-top: 5vh;
    line-height: 41.46px;
}

.error-desc {
    color: #676767;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    line-height: 24px;
    text-transform: capitalize;
}

.button-bottom {
    width: calc(100% - 40px);
    max-width: 500px;
    left: 50%;
    transform: translateX(-50%);
    align-self: center;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 30px;

}

.button-home {
    width: 100%;
    background: linear-gradient(90deg, #8FFFE7, #8170F2);
    color: #fff;
    font-size: 21px;
    font-weight: 600;
    border-radius: 6px;
    height: 54px;
    text-transform: capitalize;
    border: none;
}