:root {
--pallete-primary: #54b8d4ff;
--pallete-secondary: #6fbed377;
--pallete-reverse: white;
}

@keyframes boxShadowAnimation {
  0% { box-shadow: 0px 30px 45px 30px white; }
  25% { box-shadow: 0px 30px 45px 40px white; }
  50% { box-shadow:  0px 40px 45px 40px white; }
  75% { box-shadow: 0px 50px 65px 40px white; }
  85% { box-shadow: 0px 30px 85px 35px white; }
  95% { box-shadow: 0px 30px 65px 30px white; }
  100% { box-shadow: 0px 20px 55px 30px white; }
}

body {
    background: var(--pallete-primary);
    color: white;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    font-size: 1.3rem;
}

.description { 
    width: 90%;
    padding: 20px;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--pallete-reverse);
    background: #4ab2cf;
    border-radius: 6px;
}

.faraayesh-title {
    width: -webkit-fill-available;
    font-size: 3rem;
    
}

.faraayesh-title::after, .faraayesh-title::before  {
    content: '';
    width: 100%;
    height: 5px;
    background: var(--pallete-reverse);
    opacity: 0.1;
    display: block;
}

.faraayesh-title::after {
    filter: blur(50px);
}

.faraayesh-title::before {
    background: #4ab2cf;
    height: 0px;
}

.faraayesh-title::before  {
    animation: boxShadowAnimation 4s infinite;
}

.faraayesh-contact {
   padding: 20px;
   background: #46a9c3;
   border-radius: 5px;
   width: fit-content; 
}

#sub-title-en {
    color: #efefefee;
    font-weight: lighter;
    font-size: 1.8rem;
    margin-top: 5px;
}
#sub-title-fa {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

#contact-underline {
   width: 100%;
   height: 2px;
   margin-top: 1.5px;
   background: #3794ae;
   border-radius: 5px; 
}
