.introArea {
    width: 100%;
    height: 100%;
    padding: var(--inElementPadding);
    font-family: var(--fontOne);
    position: relative;
    z-index: 0;
}

.navbar {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 55px;
}

.navbar>button {
    text-transform: capitalize;
    font-weight: 400;
    color: #ACA0E4;
    font-size: 90%;
    text-decoration: none;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.nameDescArea {
    width: 100%;
    height: auto;
}

.nameDescArea>p {
    color: #FAF9FF;
    text-transform: capitalize;
    font-weight: 700;
    font-size: 100%;
    text-align: center;
    -webkit-text-stroke: 1px rgba(79, 23, 209, 0.15);
}

.nameDescArea>h1 {
    text-align: center;
    line-height: 1.25;
    margin: 10px 0 30px 0;
}

.nameDescArea>h1>.name {
    background: -webkit-linear-gradient(-45deg, #FAF9FF 50%, #6533ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px rgba(79, 23, 209, 0.15);
    color: #FAF9FF;
    text-transform: capitalize;
    font-weight: 700;
    font-size: 110%;
    letter-spacing: -2%;
}

.nameDescArea>h1>.aka {
    color: white;
    text-transform: lowercase;
    font-weight: 500;
    font-size: 50%;
    letter-spacing: 1px;
}

.nameDescArea>h2 {
    font-weight: 400;
    color: #ACA0E4;
    font-size: 95%;
    text-align: center;
}

.pictureArea {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.pictureBackground {
    width: 327px;
    height: 327px;
    border-radius: 50%;
    background: -webkit-linear-gradient(#03061C, #010208);
    /* backdrop-filter: blur(7px); */
    position: relative;
    box-shadow: #03061C 0px 22px 70px 4px;
}

.pictureBackground>svg {
    width: 100%;
    height: 100%;
    display: block;
    animation: spin 20s infinite linear;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.pictureBackground>svg>text {
    font-size: 27%;
    fill: #ffffff;
    position: relative;
    z-index: 15;
}

.pictureBackground>img {
    width: 70%;
    height: 70%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    transform: translate(-50%, -50%);
    box-shadow: rgb(0, 0, 0) 0px 20px 30px -10px;
}

@media only screen and (max-width: 1280px) {
    .navbar>button {
        font-size: 85%;
    }

    .nameDescArea>p {
        font-size: 90%;
    }

    .nameDescArea>h1>.name {
        font-size: 100%;
    }

    .nameDescArea>h2 {
        font-size: 85%;
    }

    .pictureArea {
        bottom: -65px;
    }

    .pictureBackground {
        width: 290px;
        height: 290px;
    }
}

@media only screen and (max-width: 1080px) {
    .introArea {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .navbar>button {
        font-size: 90%;
    }

    .nameDescArea>p {
        font-size: 100%;
    }

    .nameDescArea>h1>.name {
        font-size: 110%;
    }

    .nameDescArea>h2 {
        font-size: 95%;
        margin-bottom: 37px;
    }

    .pictureArea {
        position: relative;
        bottom: 0;
        left: 0;
        transform: translateX(0%);
        margin-bottom: -80px;
    }

    .pictureBackground {
        width: 327px;
        height: 327px;
    }
}

@media only screen and (max-width: 768px) {
    .navbar>button {
        font-size: 85%;
    }

    .nameDescArea>p {
        font-size: 90%;
    }

    .nameDescArea>h1>.name {
        font-size: 100%;
    }

    .nameDescArea>h2 {
        font-size: 85%;
    }

    .pictureArea {
        margin-bottom: -65px;
    }

    .pictureBackground {
        width: 290px;
        height: 290px;
    }
}

@media only screen and (max-width: 576px) {
    .navbar {
        margin-bottom: 65px;
    }

    .nameDescArea>p {
        font-size: 80%;
    }

    .nameDescArea>h1>.name {
        font-size: 80%;
    }

    .nameDescArea>h2 {
        font-size: 80%;
        margin-bottom: 27px;
    }

    .pictureBackground {
        width: 70vw;
        height: 70vw;
    }
}