﻿:root {
    --errorShadowColor: red;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow: hidden;
    background-color: #e0f0fb;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-box {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    border-radius: 15px;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    width: 500px;
}

.error-msg {
    width: 302px;
    background: #fff;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    border-top: 7px solid #a9daf5;
    min-height: 220px;
    border-radius: 4px;
    padding: 10px;
}

.circle-code {
    border-radius: 50%;
    background-color: #fff;
    width: 100px;
    height: 100px;
    margin: 20px 0;
}

.error-img {
    width: 400px;
}


h1 {
    color: rgb(94 94 94);
    font-size: 20px;
}

.wrong-para {
    font-family: iranyekan;
}

.wrong-para, .status_code {
    color: #000;
    font-weight: 600;
    text-align: center;
    padding: 2rem .5rem .5rem .5rem;
}

.errorDetail {
    display: none;
    align-self: center;
    justify-self: center;
    max-width: 70%;
}

.clearCacheAndBack a {
    animation: shadower 2s ease infinite;
}

@keyframes shadower {
    0% {
        box-shadow: 0px 0px 20px 0px var(--errorShadowColor);
    }

    50% {
        box-shadow: 0px 0px 20px 10px var(--errorShadowColor);
    }

    100% {
        box-shadow: 0px 0px 20px 0px var(--errorShadowColor);
    }
}
