@font-face {
    font-family: "alibaba";
    src: url("assets/fonts/IR_FA.ttf") format("truetype");
}

.background-site {
    background-color: black;
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;
}

.background-site::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: rgba(12, 12, 97, 1);
    border-radius: 100%;
    border: 1px solid rgb(17, 0, 255);
    animation: bgCircleAnim 20s ease-in-out infinite alternate;
    z-index: 0;
}

.personal-info {
    width: 40vw;
    min-height: 40vw;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 255, 0.2),
        inset 0 0 15px rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 18px;
    font-family: sans-serif;
    text-align: center;
    z-index: 1;
    transition: all 0.3s ease;
}

.info-box {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12.5px;
}

.personal-image {
    width: 10vw;
    height: 10vw;
    border-radius: 100%;

}

.font-ali {
    font-family: "alibaba";
}

.personal-info:hover {
    box-shadow: 0 8px 40px rgba(0, 102, 255, 0.4),
        inset 0 0 25px rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

@keyframes bgCircleAnim {
    0% {
        top: 0%;
        left: 0%;
    }

    5% {
        top: 10%;
        left: 60%;
    }

    10% {
        top: 30%;
        left: 80%;
    }

    15% {
        top: 50%;
        left: 40%;
    }

    20% {
        top: 80%;
        left: 10%;
    }

    25% {
        top: 90%;
        left: 60%;
    }

    30% {
        top: 70%;
        left: 90%;
    }

    35% {
        top: 40%;
        left: 70%;
    }

    40% {
        top: 20%;
        left: 30%;
    }

    45% {
        top: 0%;
        left: 90%;
    }

    50% {
        top: 20%;
        left: 60%;
    }

    55% {
        top: 50%;
        left: 20%;
    }

    60% {
        top: 80%;
        left: 0%;
    }

    65% {
        top: 100%;
        left: 30%;
    }

    70% {
        top: 70%;
        left: 70%;
    }

    75% {
        top: 40%;
        left: 90%;
    }

    80% {
        top: 20%;
        left: 60%;
    }

    85% {
        top: 0%;
        left: 20%;
    }

    90% {
        top: 30%;
        left: 50%;
    }

    95% {
        top: 60%;
        left: 10%;
    }

    100% {
        top: 0%;
        left: 0%;
    }
}