@font-face {
    font-family: "IMPRISHA";
    src: url(fonts/IMPRISHA.TTF)format(truetype);
}

@font-face {
    font-family: "IRArshia";
    src: url(fonts/IRArshia_MRT.ttf)format(truetype);
}

@font-face {
    font-family: "IRFarnaz";
    src: url(fonts/IRFarnaz_MRT.ttf)format(truetype);
}

@font-face {
    font-family: "plasmadripbrk";
    src: url(fonts/plasmadripbrk.ttf)format(truetype);
}





* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: IMPRISHA;
    font-weight: 500;
    color: white;
}

.card,
.card-body {
    background-color: #202020;
}

body {
    background: linear-gradient(45deg, #000000, #202020);
}

.close-icon {
    font-size: 30px;
}

.close-icon:hover {
    transform: scale(80%);
    color: #e90e62;
    transition: 0.2s ease-in-out;
}

.material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 48
}

.move-up {
    position: fixed;
    right: 0;
    top: 90%;
    z-index: 1;
}

.move-up:hover {
    transform: scale(80%);
}

body::-webkit-scrollbar {
    width: 10px;
    background-color: #8d99ae;
}

body::-webkit-scrollbar-thumb {
    border-radius: 100px;
    background-color: #666af6;
}

ul {
    display: flex;
    justify-content: center;
    width: 100%;
}

li {
    list-style: none;
    cursor: pointer;
}

ul li:hover {
    transform: scale(80%);
    opacity: 0.5;
}

ul li a {
    font-size: 20px;
    text-decoration: none;
    color: white;
    padding: 5px 0;
    border-bottom: 1px solid white;
}

@media screen AND (max-width: 450px) {

    ul li a {
        font-size: 10px;
    }

}

@media screen AND (max-width: 700px) {

    .navbar-title {
        display: flex;
        justify-content: center;
    }

}



.shape1 {
    position: absolute;
    width: 120px;
    height: 120px;
    background-color: #666bf610;
    box-shadow: 1px 1px 20px rgba(133, 133, 133, 0.178);
    border-radius: 25px;
    left: 50%;
    top: 110%;
    animation: shape-rotate 100s infinite;
    z-index: -1;
}

.shape2 {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: #666bf610;
    box-shadow: 1px 1px 20px rgba(133, 133, 133, 0.178);
    border-radius: 10px;
    left: 10%;
    top: 80%;
    animation: shape-rotate 100s infinite;
    z-index: -1;
}

.shape3 {
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: #666bf610;
    box-shadow: 1px 1px 20px rgba(133, 133, 133, 0.178);
    border-radius: 15px;
    left: 60%;
    top: 88%;
    animation: shape-rotate 100s infinite;
    z-index: -1;
}

.shape4 {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: #666bf610;
    box-shadow: 1px 1px 20px rgba(133, 133, 133, 0.178);
    border-radius: 10px;
    left: 25%;
    top: 95%;
    animation: shape-rotate 100s infinite;
    z-index: -1;
}

.shape5 {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: #666bf610;
    box-shadow: 1px 1px 20px rgba(133, 133, 133, 0.178);
    border-radius: 10px;
    left: 35%;
    top: 150%;
    animation: shape-rotate 100s infinite;
    z-index: -1;
}

.shape6 {
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: #666bf610;
    box-shadow: 1px 1px 20px rgba(133, 133, 133, 0.178);
    border-radius: 15px;
    left: 55%;
    top: 180%;
    animation: shape-rotate 100s infinite;
    z-index: -1;
}

.shape7 {
    position: absolute;
    width: 120px;
    height: 120px;
    background-color: #666bf610;
    box-shadow: 1px 1px 20px rgba(133, 133, 133, 0.178);
    border-radius: 18px;
    left: 58%;
    top: 160%;
    animation: shape-rotate 100s infinite;
    z-index: -1;
}

.shape8 {
    position: absolute;
    width: 70px;
    height: 70px;
    background-color: #666bf610;
    box-shadow: 1px 1px 20px rgba(133, 133, 133, 0.178);
    border-radius: 7px;
    left: 28%;
    top: 200%;
    animation: shape-rotate 100s infinite;
    z-index: -1;
}

.shape9 {
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: #666bf610;
    box-shadow: 1px 1px 20px rgba(133, 133, 133, 0.178);
    border-radius: 15px;
    left: 10%;
    top: 220%;
    animation: shape-rotate 100s infinite;
    z-index: -1;
}

.shape10 {
    position: absolute;
    width: 160px;
    height: 160px;
    background-color: #666bf610;
    box-shadow: 1px 1px 20px rgba(133, 133, 133, 0.178);
    border-radius: 18px;
    left: 37%;
    top: 250%;
    animation: shape-rotate 100s infinite;
    z-index: -1;
}

@keyframes shape-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(1440deg);
        top: -100%;
    }
}



/*
==============
    font
==============*/


ul li a,
.font-header {
    font-family: plasmadripbrk;
}

.font-description {
    font-family: IRArshia;
}

.font-button {
    font-family: IRArshia;
    ;
}






/*
==============
    header
==============*/



.text-animation {
    animation: text-animation 2s;
}

.text-animation-two {
    animation: text-animation-two 4s;
}

.text-animation-three {
    animation: text-animation-three 3s;
}

.button-animation {
    animation: button 6s;
}

.image-animation {
    animation: image-animation 2s;
}

@keyframes text-animation {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes text-animation-two {
    0% {
        transform: translateX(-600%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes text-animation-three {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(100%);
    }
}

@keyframes button {
    0% {
        transform: translateX(-1100%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes image-animation {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0);
    }
}


/*
        ===============
           icon header
        =============== */


.icon-header {
    cursor: pointer;
    animation: icon-animation 4s infinite;
}

.icon-header:hover {
    opacity: 0.5;
}

@keyframes icon-animation {
    0% {
        transform: scale(70%);
    }

    50% {
        transform: scale(100%);
    }

    100% {
        transform: scale(70%);
    }
}




/*
        ===============
           button
        =============== */




.button {
    position: relative;
    color: #202020;
    display: inline-block;
    padding: 8px 30px;
    background: linear-gradient(90deg, #ff7b00, #ffea00);
    border-radius: 45px;
    text-decoration: none;
    overflow: hidden;
    margin: 10px;
    box-shadow: 3px 5px rgba(0, 0, 0, 0.1);
    font-size: 20px;
    font-weight: 300;
    animation: button-animation 4s infinite;
}

.button:hover {
    opacity: 0.9;
}

.button .overlay {
    position: absolute;
    background: #fff;
    left: 0;
    top: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: blink 0.5s linear;
}

@keyframes blink {
    0% {
        height: 0;
        width: 0;
        opacity: 0.5;
    }

    100% {
        height: 400px;
        width: 400px;
        opacity: 0;
    }
}

@keyframes button-animation {
    0% {
        transform: scale(90%);
    }

    50% {
        transform: scale(100%);
    }

    100% {
        transform: scale(90%);
    }
}



/*
        ===============
             footer
        =============== */




.footer {
    background: linear-gradient(45deg, #000000, #202020);
    width: 100%;
    height: 100%;
    color: white;
    box-shadow: rgb(255, 255, 255) 0px 5px 15px;
    font-size: 15px;
}

.footer a {
    text-decoration: none;
}

.footer a :hover {
    opacity: 0.5;
}

.footer-icon {
    margin: 2rem 2rem;
    animation: icon-animation 4s infinite;
}

