* و
*::after ,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'MyCustomFont';
    src: url('../Font/BNazanin.ttf') format('woff2');
    font-weight: normal;
    font-style: normal;
}

body {
    direction: rtl;
    font-family: 'MyCustomFont', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 97vh;
    background: url(../image/bg.png) ,#242f3f;
    background-size: 50% 50%;
    background-repeat: no-repeat;
    background-position: center;
    color: #3498db;
}

.content-page {
    transform: translateY(-200%);
}

.content-page div h1 {
    font-size: 50px;
}

.content-page div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.typing-indicator {
    width: 60px;
    height: 30px;
    position: relative;
    z-index: 4;
}
  
.typing-circle {
    width: 8px;
    height: 8px;
    position: absolute;
    border-radius: 50%;
    background-color: #3498db;
    left: 15%;
    transform-origin: 50%;
    animation: typing-circle7124 0.5s alternate infinite ease;
}
  
@keyframes typing-circle7124 {
    0% {
      top: 20px;
      height: 5px;
      border-radius: 50px 50px 25px 25px;
      transform: scaleX(1.7);
    }
  
    40% {
      height: 8px;
      border-radius: 50%;
      transform: scaleX(1);
    }
  
    100% {
      top: 0%;
    }
}
  
.typing-circle:nth-child(2) {
    left: 45%;
    animation-delay: 0.2s;
}
  
.typing-circle:nth-child(3) {
    left: auto;
    right: 15%;
    animation-delay: 0.3s;
}
  
.typing-shadow {
    width: 5px;
    height: 4px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 30px;
    transform-origin: 50%;
    z-index: 3;
    left: 15%;
    filter: blur(1px);
    animation: typing-shadow046 0.5s alternate infinite ease;
}
  
@keyframes typing-shadow046 {
    0% {
      transform: scaleX(1.5);
    }
  
    40% {
      transform: scaleX(1);
      opacity: 0.7;
    }
  
    100% {
      transform: scaleX(0.2);
      opacity: 0.4;
    }
}

.typing-shadow:nth-child(4) {
    left: 45%;
    animation-delay: 0.2s;
}
  
.typing-shadow:nth-child(5) {
    left: auto;
    right: 15%;
    animation-delay: 0.3s;
}

@media (max-width: 700px) {
    body {
        background-size: 100% 40%;
    }
    .content-page {
        transform: translateY(-200%);
    }
    .content-page div h1 {
        font-size: 30px;
    }
}