body{
    background-color: #000;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: baloo;
}
#div-1-box{
    width: 100%;
    height: 100vh;
    max-width: 800px;
    position: relative;
    /* box-shadow: 0 0 10px 0 #ffffff26; */
    /* display: grid; */
    /* justify-content: center; */
    /* justify-items: center; */
    box-sizing: border-box;
    overflow-y: scroll;
    overflow-x: hidden;
    direction: rtl;
}

.div-1-items-box{
    width: 100%;
    min-height: 100px;
    border-radius: 20px;
    /* box-shadow: 0 0 10px 0px #ffffff70; */
    box-shadow: 0 0 10px 0px #00748b70;
    overflow: hidden;
}
#div-1{
    padding: 20px 15px;
    width: 100%;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    flex-wrap: wrap;
    row-gap: 30px;
    direction: ltr;
}
.div-1-items-box{
    padding: 15px;
    box-sizing: border-box;
}
.div-1-items-box-title{
    text-align: center;
    color: #fff;
    font-family: baloo;
    font-size: 1.3em;
    line-height: 30px;
}
.div-1-items-box-text{
    line-height: 25px;
    font-size: 1.1em;
}
.line{
    width: 0.0001%;
    height: 2px;
    background-color: #ffffff24;
    border-radius: 100px;
    margin: 15px auto;
}
.line.active{
    animation: line 400ms 500ms ease-in-out forwards;
}
@keyframes line {
    from{width: 0.0001;}
    to{width: 100%;}
}
.lvl{
    font-size: 0.7em;
}
.copy{
    color: #00bec9;
    cursor: pointer;
}








footer{
    position: fixed;
    width: 100%;
    max-width: 800px;
    bottom: -20px;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    column-gap: 15px;
    direction: ltr;
}
/* #footer{
    width: 100%;
    max-width: 700px;
    min-height: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 10px 0 #0000ff;
    background-color: #000;
} */
.footer-item-box{
    width: 100px;
    height: 90px;
    background-color: #000000;
    box-shadow: 0 0 10px 0 #0010ff;
    border-radius: 15px 15px 0 0;
    transform: translateY(0px);
    text-align: center;
    padding: 20px 5px;
    box-sizing: border-box;
    color: #fff;
    line-height: 20px;
    font-size: 0.9em;
    cursor: pointer;
    transition: all 100ms ease-out;
    position: relative;
}
.footer-item-box:hover{
    transform: translateY(-20px);
}
#footer-item-box-4{animation: footer-item-box 500ms 0ms   ease-out ;}
#footer-item-box-3{animation: footer-item-box 500ms 150ms ease-out ;}
#footer-item-box-2{animation: footer-item-box 500ms 300ms ease-out ;}
#footer-item-box-1{animation: footer-item-box 500ms 450ms ease-out ;}

@keyframes footer-item-box {
    0%{transform: translateY(60px);opacity: 0.2;}
    70%{transform: translateY(-20px);opacity: 1;}
    100%{transform: translateY(0px);}
}

#supporter-message-counter{
    width: 20px;
    height: 14px;
    position: absolute;
    right: 7px;
    top: 7px;
    border-radius: 20px;
    background-color: #fff;
    font-size: 0.8em;
    font-weight: 900;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}









@font-face {
    font-family: baloo;
    src: url(../font/BalooBhaijaan2-VariableFont_wght.ttf);
}
::-webkit-scrollbar {
    width: 6px;
    height: 7px;
    background-color: #ffffff57;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0px -1px 13px #00000000;
}

::-webkit-scrollbar-thumb {
    background: #0000db;
}
a{
    color: #0000ff!important;
    text-decoration: none;
    border: 0!important;
}



.animation-left{
    opacity: 0.2;
    transform: translateX(-100px);
    transition: all 800ms ease-in-out;
    
}
.animation-left.active{
    opacity: 1;
    transform: translateX(0px);
}
.animation-right{
        opacity: 0.2;
    transform: translateX(100px);
    transition: all 800ms ease-in-out;
}
.animation-right.active{
    opacity: 1;
    transform: translateX(0px);
}
.animation-top{
    transform: translateY(50px);
    opacity: 0.2;
}
.animation-top.active{
    animation: animation-top 400ms 500ms linear forwards;
}
@keyframes animation-top {
    from{
        transform: translateY(50px);
        opacity: 0.1;
    }to{
        transform: translateY(0px);
        opacity: 1;
    }
}
.footer-item-box{
    color: #fff!important;
}
.fa{
    direction: rtl;
}