@font-face{
    font-family: "IRANSansWeb";
    src: url("../fonts/IranSans/IRANSansWeb\(FaNum\).ttf");
}

:root{
    --color-primary:#050d18;
    --color-secondary:#b3b3b3;
    --color-border:#6a6a6a;
    --bg-color-dark:#000000;
    --bg-color-dark-opacity:#00000075;
    --color-clouddancer-opacity:#f0efeb52;
    
    --color-clouddancer:#F0EFEB;
    --color-darkpurple: #341555; 
    --color-lightpurple: #8345ff;

    --shadow: 0 0 20px rgba(131, 69, 255, 0.3);
    --shadow-light: 0 0 10px rgba(255, 255, 255, 19%);
    --font-family: "IRANSansWeb";
}

*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; 
}

*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
    list-style: none;
    scroll-behavior: smooth;
    font-family: var(--font-family);
}

body{
    line-height: 2;
    font-family: var(--font-family);
    display: block;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    z-index: 1;
}

/* =========================
          ارور 404           
============================ */
.error {
    position: relative;
    background-image: linear-gradient(rgb(27 10 62 / 60%), rgba(0, 0, 0, 0.6)), url(../img/bg-404.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

.error-img img{
    width: 500px;
}

.error .error-content{
    margin-top: 23px;
    text-align: center;
}

@media (max-width: 992px){
    .error-img img{
        width: 400px;
    }
}
    