*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
img{
    width: 100%;
    display: block;
}
svg{
    width: 100%;
}
.home__page__redirect{
    text-decoration: none;
    color: #ffffff;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.error__page__wrapper{
    margin: 0 auto;
    padding: 0 15px;
    background: #202122;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
}
.error__number__image{
    text-align: center;
}
.error__description__wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.error__description{
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    align-items: center;
    letter-spacing: -0.02em;
    background: linear-gradient(180deg, #32EAF1 0%, #0999AE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.12);
}
.line{
    position: relative;
    height: 10px;
    width: 100%;
    margin-bottom: 10px;
}
.line:after{
    position: absolute;
    content: '';
    background: linear-gradient(90deg, rgba(9, 153, 174, 0) 0%, #32EAF1 52.35%, rgba(9, 153, 174, 0) 101.53%);
    width: 55%;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: 0px;
    height: 21%;
}
.error__details{
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 19px;
    align-items: center;
    color: #FFFFFF;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.12);
    margin-top: 12px;
}
.error__detail{
    display: block;
    text-align: center;
}
.back__to__home{
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    color: #FFFFFF;
    background: linear-gradient(180deg, #32EAF1 0%, #0999AE 100%);
    box-shadow: -1px -1px 6px rgba(0, 228, 255, 0.24), 1px 1px 6px rgba(0, 228, 255, 0.24);
    border-radius: 12px 0px;
    width: 100%;
    max-width: 300px;
    height: 52px;
    margin-top: 24px;
    border-style: none;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

@media screen and (max-width: 767px)
 {
    .error__description{
        font-size: 22px;
    }
    .error__details{
        font-size: 16px;
        font-weight: 400;
    } 
    .back__to__home{
        font-size: 14px;
    }
    .error__page__wrapper {
        padding: 0px 10px;
    }
    .back__to__home{
        height: 48px;
    }
 }

@media screen and (max-width: 540px)
 {
    svg{
        width: 90%;
    }
    .line {
        margin-bottom: 16px;
    }
}
@media screen and (max-width: 480px){
    svg{
        width: 90%;
    }
    .error__description{
        font-size: 19px;
       
    }
    .error__details{
        font-size: 14px;
        
    }
    .back__to__home{
        font-size: 15px;
        
    }
}
@media screen and (max-width:375px) {
    .error__description {
        font-size: 17px;
    }
    .error__details {
        font-size: 13px;
    }
    .back__to__home{
        width: 70%;
    }
}
@media screen and (max-width: 360px)
 {
    svg{
        width: 85%;
    }
    .error__description{
        font-weight: 500;
        font-size: 16px;
    }
}
@media screen and (max-width: 320px)
 {
    svg{
        width: 85%;
    }
}

@media screen and (max-width:280px){
    .back__to__home {
        font-size: 13px;
        width: 80%;
    }
    .error__details {
        font-size: 11px;
    }
    .error__description {
        font-size: 13px;
    }
}
@media (orientation:landscape) {
    .error__page__wrapper {
        padding: 30px 10px;
    }
    .error__number__image {
        padding-top: 30px;
    }
}